Hello everybody,
I would like to know how do I add the content of a variable to a combobox.
I have the following code
For i = 1 to 10
ComboBox1.AddIt em Data, i
Next i
Where I declared previously:
Public Data As String
Public i As Integer
When I run my code mi combo box just shows empty.
Hope someone can help me out.
I would like to know how do I add the content of a variable to a combobox.
I have the following code
For i = 1 to 10
ComboBox1.AddIt em Data, i
Next i
Where I declared previously:
Public Data As String
Public i As Integer
When I run my code mi combo box just shows empty.
Hope someone can help me out.
Comment