Results 1 to 2 of 2

Thread: Pictures In Memory

  1. #1

    Thread Starter
    New Member
    Join Date
    Jan 2000
    Location
    Kitchener, Ontario, Canada
    Posts
    3

    Post

    Is it possible to store a picture into memory for access later so you don't have to load the picture using "LoadPcture"

  2. #2
    New Member
    Join Date
    Jul 1999
    Location
    San Jose, California
    Posts
    3

    Post

    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
  •  



Click Here to Expand Forum to Full Width