Gif

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kavithaprakash
    New Member
    • Jun 2007
    • 1

    #1

    Gif

    How to include gif files in VB form.

    Thank you
    Kavithaprakash
  • ansumansahu
    New Member
    • Mar 2007
    • 149

    #2
    Originally posted by kavithaprakash
    How to include gif files in VB form.

    Thank you
    Kavithaprakash
    Hi ,
    What do you exactly mean by include gif files in VB form. Do you want to display them on the form?? Can you elaborate on the requirement you have??


    -ansuman sahu

    Comment

    • kadghar
      Recognized Expert Top Contributor
      • Apr 2007
      • 1302

      #3
      In the properties window (you can show it or hide it with F4) just change it where it says "image" or "picture" depending if you want it to show in the Form or in a picture box, image, command button.

      You can also do it in runtime just use the property (image or picture) like :

      PictureBox1.Pic ture = (put here the picture of your choice)

      Good Luck
      Kad

      Comment

      • debasisdas
        Recognized Expert Expert
        • Dec 2006
        • 8119

        #4
        try using

        picture1.pictur e=loadpicture(" filepath")

        u can also set it in the design time through the picture property of the control.

        Comment

        Working...