Hi .
Thanks for the tip it works .
ive created image object and add few labels .
the code below show 2 clicks's subs which call show_count .
how to change the code below to work with array (lblapple = Array As Label(apple1, apple2, apple3, apple4, apple5))
so each time i click the button, show_count will change the label to disable and i will be able to check the order of the clicks (apple1 first , apple2 second etc ..)
Sub show_count
countlabels=countlabels+1
If countlabels=4 Then
Msgbox("Finished","Great")
MediaPlayer1.Initialize( )
MediaPlayer1.Load(File.DirAssets, "einav.mp3")
MediaPlayer1.Play
End If
End Sub
Sub apple1_Click
show_count
apple1.Enabled=False
End Sub
Sub apple2_Click
show_count
apple2.Enabled=False
End Sub
Sub apple3_click
..
..
..
Thanks ,
Zohar