如何用VB编动画效果

我想在一个销售管理系统软件最开始加载动画效果,请问需要做些什么呢?
[33 byte] By [jjs008-西瓜刨] at [2008-4-24]
# 1
e.g:

webbrowser + *.gif
timer + jpg(s)
webbrowser+ *.swf
northwolves-狼行天下 at 2007-10-22 > top of Msdn China Tech,visual basic,多媒体...
# 2
你是要做个等待的动画吧?
nik_Amis-... at 2007-10-22 > top of Msdn China Tech,visual basic,多媒体...
# 3
是等待的动画
jjs008-西瓜刨 at 2007-10-22 > top of Msdn China Tech,visual basic,多媒体...
# 4
不知道这个可不可以是用几张图片再连接起来的.
Private Sub Timer1_Timer()
Dim j As Integer
If i >= 0 Then
Picture1.Cls
j = i Mod 4 + 1
FileName = "f:\新建文件夹\as" & j & ".jpg"
Picture1.Picture = LoadPicture(FileName)
i = i + 1
End If
End Sub
chengwei1985-枫树苍叶 at 2007-10-22 > top of Msdn China Tech,visual basic,多媒体...