animation and sound effects through vb...urgent
hi all,
this is very urgent!! i want to know how we can achieve animation of some images and how to produce sound effects throgh vb program. is it possible? if yes, i want to implement that in my project. so pleeease help!!
thanks in advance..
HAPPY NEW YEAR TO U ALL
ilikevb
i tried... but doesnt work
hi dimava,
i tried by the imagelist and picturebox. but it's giving error like
"invalid use of property" :mad: i am sorry but i dont know how to load image from imagelist to picturebox. could u please send me the code? i am giving my code what i have tried. u please tell me where i have gone wrong...
thanks
ilikevb
VB Code:
Private Sub Timer1_Timer()
Dim i As Integer
i = 1
If i <= ImageList1.ListImages.Count Then
Picture1.Image = ImageList1.ListImages(i)
i = i + 1
Else
i = 0
End If
End Sub