|
-
Mar 31st, 2004, 04:26 AM
#1
Thread Starter
Supreme User
Get color from one, put in the other [RESOLVED]
VB Code:
Option Explicit
Private Sub picColor_Click(Index As Integer)
picPreview.BackColor = picColor.Item.BackColor
End Sub
1 picture box, 50 pictureboxes in array. When you click the one from the array, i want its color to show in the first pic box.
Easy, but im running into problems
Last edited by Madboy; Mar 31st, 2004 at 08:06 AM.
-
Mar 31st, 2004, 05:14 AM
#2
Frenzied Member
try this
VB Code:
Private Sub picColor_Click(Index As Integer)
picPreview.BackColor = picColor(Index).BackColor
End Sub
'Buzby'
Visual Basic Developer
"I'm moving to Theory. Everything works there."
-
Mar 31st, 2004, 05:30 AM
#3
Thread Starter
Supreme User
Cheers
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
|