D
Darren
OK, I'm trying to read the contents of a combobox into a string called item
but I've got no idea how to loop through each item in it
Dim i As Integer
Dim item As String
For i = 0 To ComboBox1.Items.Count - 1
item = item & "|" & ComboBox1. 'What goes in here
Next i
Can any help me out please?
Thanks
but I've got no idea how to loop through each item in it
Dim i As Integer
Dim item As String
For i = 0 To ComboBox1.Items.Count - 1
item = item & "|" & ComboBox1. 'What goes in here
Next i
Can any help me out please?
Thanks