|
-
Jun 8th, 2002, 11:13 AM
#1
Thread Starter
Lively Member
Loading images
After making a picture in something, how can I load it into my program. I know I can make an image or picture box to do it, but I also want to know how to change the picture while the program is running.
Do you know if you will answer no to this question?
If we've never seen something happen, we can't know if its impossible.
If the soles of a shoe make faces at the floor when we don't look and isn't being watched via mirror or video tape, will we ever know?
If someone orders you to disobey all of their orders, do you obey or disobey?
-
Jun 8th, 2002, 11:20 AM
#2
PowerPoster
VB Code:
Picture1.Picture = LoadPicture( "C:\test.bmp" )
-
Jun 8th, 2002, 05:42 PM
#3
VB Code:
Picture1.Picture = LoadPicture(Pic Path)
'To reset pic:
Set Picture1.Picture = Nothing
-
Jun 8th, 2002, 10:44 PM
#4
New Member
To unload a picture, you can also do this:
Picture1.Picture = LoadPicture("")
Not that it's any easier, but I thought I'd point it out. =)
I really wish I had something witty to write here.
-
Jun 9th, 2002, 12:07 AM
#5
Good Ol' Platypus
Since it may open a file stream to the disk, it may be slower. Still, alternatives are alternatives
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
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
|