|
-
Jan 23rd, 2000, 11:58 PM
#1
Thread Starter
New Member
Is it possible to store a picture into memory for access later so you don't have to load the picture using "LoadPcture"
-
Jan 24th, 2000, 12:30 PM
#2
New Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|