Results 1 to 2 of 2

Thread: please help me!!!

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2000
    Posts
    7

    Cool

    i have an image on a form in visual basic which was inserted using the built-in image control. when its running, i want the user to click a command button and have that image exported as a GIF or BMP file on his/her C:\ drive. If you need clearer explanation please write back
    thanks

  2. #2
    Frenzied Member Mark Sreeves's Avatar
    Join Date
    Nov 1999
    Location
    UK
    Posts
    1,845
    savepicture() will save a picture as a bitmap

    Code:
    Private Sub Command1_Click()
    SavePicture Image1.pictute, "c:\mypic.bmp"
    
    End Sub
    Mark
    -------------------

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