Animation using series of pictures
Animation using series of pictures
Rate Animation using series of pictures
(2(2 Vote))
'path file to take moon image as below: 'C:\ProgramFiles\MicrosoftVisual\Studio\Common\Graphics\Icons\Elements
'take a timer, interval 50, take a label box..and caption it "Loading Please 'Wait.
'take a command button and give any task to this button.
'now paste this code..
----------------------------------------------------------------------------
Private Sub Command1_Click()
Unload Me
Timer1.Enabled = False
End Sub
Private Sub Form_Load()
mnFrame = 0
End Sub
Private Sub Timer1_Timer()
imgbusy.Visible = True
mnFrame = mnFrame + 1
If mnFrame > 7 Then mnFrame = 0
imgbusy.Picture = ImgFrame(mnFrame).Picture
End Sub
'if any problem plz email me. [email protected]
Animation using series of pictures Comments
No comments yet — be the first to post one!
Post a Comment