|
-
May 27th, 2006, 06:37 PM
#1
Thread Starter
Addicted Member
[RESOLVED] indexing
if i have three images indexed (image1(0) image1(1) image1(2)) How to i determine if i click a certain one instead of all of them.
Resizing
System Balloons
If your question is answered, please mark the thread resolved by pulling down the Thread Tools menu and clicking the Mark Thread Resolved button.
Remember to rate a post if you find it helpful 
-
May 27th, 2006, 06:38 PM
#2
Re: indexing
The click event and any other event gets the Index value as a parameter:
VB Code:
Private Sub image1_Click(Index As Integer)
MsgBox "You clicked index " & Index
End Sub
-
May 27th, 2006, 06:41 PM
#3
Thread Starter
Addicted Member
Resizing
System Balloons
If your question is answered, please mark the thread resolved by pulling down the Thread Tools menu and clicking the Mark Thread Resolved button.
Remember to rate a post if you find it helpful 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|