PDA

Click to See Complete Forum and Search --> : Copying contents of one picturebox to another


Celery
Dec 25th, 2000, 10:42 AM
Hi!

I need to copy contents of a picturebox to another picturebox
on different coordinates (not pixel by pixel, but the whole thing
at once). Can anyone please help?

Thanks in advance for any answer.


Celery

Dec 25th, 2000, 11:38 AM
Use PaintPicture.

Picture1.PaintPicture Picture2, 30, 30, Picture2.Width, Picture2.Height

M@rk
Dec 28th, 2000, 12:59 PM
[CODE]
Picture1.picture = Picture2.picture
[CODE/]