Results 1 to 4 of 4

Thread: Animating GIFs

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2001
    Posts
    14

    Unhappy

    I am working on a project in my computer progamming class and I want to put GIFs on the forms. What is the code or the procedure to get them to animate correctly?

  2. #2
    Frenzied Member Mark Sreeves's Avatar
    Join Date
    Nov 1999
    Location
    UK
    Posts
    1,845
    Do you mean a VB form?
    if so, the easiest way is to use a webbrowser control and:
    Code:
     
    Private Sub Form_Load()
    dim Filename as string
    
    filename = "whatever.gif"
    WebBrowser1.Navigate FileName
    
    End Sub
    Mark
    -------------------

  3. #3

    Thread Starter
    New Member
    Join Date
    Mar 2001
    Posts
    14

    Confused

    How do you use or open a Web Browser Control?

  4. #4
    Guest
    Go to Project > Custom Controls > and make sure Microsoft Internet Controls is checked and then press OK.

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