|
-
Jan 29th, 2007, 01:58 PM
#3
Thread Starter
Member
Re: Copy the data contents from a combo box to another combo
 Originally Posted by Static
VB Code:
'Generalized
For x = 0 To Combo1.ListCount - 1
Combo2.AddItem Combo1.List(x)
Combo2.ItemData(Combo2.NewIndex) = Combo1.ItemData(x)
Next
Hi Static
The code run fine thank you very much
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
|