Hi djzar2004,
The easiest way to do it is adding a PictureBox to another one. Try something like this:
Code Snippet
this.pictureBox1.Controls.Add(this.pictureBox2);
this.pictureBox2.Location = new Point(0, 0);
Hope this helps.
Regards
Hi djzar2004,
The easiest way to do it is adding a PictureBox to another one. Try something like this:
Code Snippet
this.pictureBox1.Controls.Add(this.pictureBox2);
this.pictureBox2.Location = new Point(0, 0);
Hope this helps.
Regards
You can use google to search for other answers