|
-
Jan 15th, 2004, 09:17 AM
#1
Thread Starter
Addicted Member
Listbox Problem........
I have 6 listboxes on a groupbox. When I click on a value in listbox1, the values in the other 5 listboxes change to the same value.
All the listboxes(1-6) are bound to different arraylists, and I even deleted them all and put them back in (this time not using copy and paste).
Any ideas?????
Cheers,
Bebandit
-
Jan 15th, 2004, 09:51 AM
#2
Addicted Member
Could you post code where you bind listboxes to arraylists? This is normal behavior when controls bind to same datasource. Maybe will be more helpful when we see code.
regard j
-
Jan 15th, 2004, 12:05 PM
#3
Sleep mode
If they share same string values , then do this . Note , this doesn't require to be in the same index .
VB Code:
Me.ListBox2.Text = Me.ListBox1.Text
Me.ListBox3.Text = Me.ListBox1.Text
Me.ListBox4.Text = Me.ListBox1.Text
Me.ListBox5.Text = Me.ListBox1.Text
Me.ListBox6.Text = Me.ListBox1.Text
-
Jan 15th, 2004, 02:39 PM
#4
Thread Starter
Addicted Member
Got it....Thanks
Thanks for your help......
dimmed 6 different array lists but forgot to change the values...
ALL SET!!
Thanks again.
Cheers,
Bebandit
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
|