PDA

Click to See Complete Forum and Search --> : Pictures In Memory


rchislett
Jan 23rd, 2000, 10:58 PM
Is it possible to store a picture into memory for access later so you don't have to load the picture using "LoadPcture"

Allanx
Jan 24th, 2000, 11:30 AM
Use a picture object to store the picture in memory when you load the form:
Dim picobject1 as picture
picobject1.picture=loadpicture("C:\test.jpg")
then when you want to display the picture in an image control or picture control:
image1.picture=picobject1 or
picture1.picture = picobject1