Hi,
how do you set a value for a combobox at runtime?
For example, I already have a ComboBox with 2 items "Correct" and "Wrong":
Dim Value As String
Value = "Correct"
Select Case Value
Case "Correct"
'sentence to select the value
Case "Wrong"
''sentence to select the value
End Select
how do you set a value for a combobox at runtime?
For example, I already have a ComboBox with 2 items "Correct" and "Wrong":
Dim Value As String
Value = "Correct"
Select Case Value
Case "Correct"
'sentence to select the value
Case "Wrong"
''sentence to select the value
End Select