|
-
Jan 29th, 2007, 01:18 PM
#1
Thread Starter
Member
Copy the data contents from a combo box to another combo
I have in my project a combo box(a) that in run time I must to copy to another combo box(b)
in the a combo box have items that are in the combo and also Itemdata to every item data
I succed to copy the items but not the Itemdata to every items
dim i as integer
For i = 0 To cboOperators(2).ListCount
newFrmStart(i).cboOperators(0).AddItem cboOperators(0).List(i)
newFrmStart(i).cboOperators(2).AddItem cboOperators(2).List(i)
Next i
Please advice how to copy thr itemdata in run time
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
|