|
-
Mar 21st, 2001, 10:53 AM
#1
Thread Starter
New Member
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?
-
Mar 21st, 2001, 11:16 AM
#2
Frenzied Member
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
-
Mar 21st, 2001, 11:40 AM
#3
Thread Starter
New Member
Confused
How do you use or open a Web Browser Control?
-
Mar 21st, 2001, 11:53 AM
#4
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|