How can we save multiple images from Picture boxs to a file, then load them back to the picture boxes?
Printable View
How can we save multiple images from Picture boxs to a file, then load them back to the picture boxes?
I don't think you can save mutiple images to 1 file, but you may do something like this:
VB Code:
Private Sub Command1_Click() SavePicture Picture1.Picture, "c:\temp.bmp" End Sub Private Sub Command2_Click() Picture1.PaintPicture LoadPicture("c:\temp.bmp"), 0, 0, Picture1.ScaleWidth, Picture1.ScaleHeight End Sub
Roy
Quote:
Said previously by Gtarawneh
MULTIPLE Images