can anyone recommend one? i haven't found any that are free =) and before someone tells me to make my own.. i dont know how to make controls yet ;)
Printable View
can anyone recommend one? i haven't found any that are free =) and before someone tells me to make my own.. i dont know how to make controls yet ;)
Just add the WebBrowser control to a frame and size the frame to fit your gif. Place the gif in the same directory as your app. Then add the following code to your Form Load Sub:
Dim filName As String
filName = App.Path
If Right$(filName, 1) <> "\" Then filName = filName & "\"
filName = filName & "your.gif"
WebBrowser1.Navigate filName
I'd rather know how it works, myself. That way I could build one on my own.
Eiredrake
Go to http://www.planet-source-code.com and search for "Animated Gif."