b3ta.com board
You are not logged in. Login or Signup
Home » Messageboard » Message 2459946 (Thread)

# Yup.
Should I mail you some code?

EDIT:
VB. NET works like so:
ListBox1.Items.Add(ComboBox1.SelectedItem)
(, Mon 8 Dec 2003, 12:06, archived)
# Ah-ha, sorted
thank you.
The bloody notes was telling me to do SelectedText not SelectedItem
(, Mon 8 Dec 2003, 12:14, archived)
# In VB6 Add took a text parameter.
VB.NET it is of type Item.

You could do it the long way round and create an Item from the Text, but that would be superfluous since you have the Item cast anyway from the ComboBox.
(, Mon 8 Dec 2003, 12:18, archived)