|
-
Aug 13th, 2001, 05:41 PM
#1
Thread Starter
Lively Member
adding combobox item to list box
i want to add a combo box item(when the user clicks it)to display in a listbox....i have tried a few things w/ the additem code and have not yet found anythnig that worked .how would i do this
I'm a beginner.
------------------------------------------------
Your impossible ego ***** is like a
Megalomaniacal tab on my tongue
You *****in' touch me I will rip you apart

-
Aug 13th, 2001, 05:43 PM
#2
Member
Why not just listboxname.AddItem comboboxname.Text?
-
Aug 13th, 2001, 05:51 PM
#3
PowerPoster
Maybe you can try this:
VB Code:
Private Sub Combo1_Click()
List1.AddItem Combo1.List(Combo1.ListIndex)
End Sub
-
Aug 13th, 2001, 05:55 PM
#4
Thread Starter
Lively Member
o man i did that to...just backwords ...thanx
I'm a beginner.
------------------------------------------------
Your impossible ego ***** is like a
Megalomaniacal tab on my tongue
You *****in' touch me I will rip you apart

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
|