Free video Tutorials
Updating every hour!
50078 online video tutorials and counting.
Video Tutorials

Changing Background Image - Visual Basic 6.0


This tutorial is about form Background images.

Code:

‘Start Of Code
‘By EXeCute
Private Sub Form_Load()
Timer1.Enabled = True
End Sub

Private Sub Timer1_Timer()
Image1.Visible = True
Timer1.Enabled = False
Timer2.Enabled = True
End Sub

Private Sub Timer2_Timer()
Image2.Visible = True
Timer2.Enabled = False
MsgBox “Bye”
Unload Me
End Sub
‘End of code