Hi All,
Something I've never understood about picture boxes...
If I have a picture box on a form, and call it 'pic'.
Then I load a picture into it:
pic.Picture = LoadPicture("C:\gfx\DavidHasslehoff.bmp")
And draw over the picture...
pic.Line (100,100)-Step(300,300), VBRED, BF
(which draws a red square on top of the picture).
If I then save the picture box picture to a file:
SavePicture pic.Picture, "C:\gfx\test.bmp"
Loading this file back into a paint package just gives me the
original picture (ie. without the red square).
How can I save the new picture (ie. with the changes I've made)
to a file?
Thanks,
Matt.