我已经在表单中添加了一个ComboBox,到目前为止还没有其他格式。我有一个文本框,用户输入20到100之间的许多竞争对手(值)。我想填充ComboBox,以便用户可以在ComboBox中选择1到100的竞争对手。因此,用户可以单击下拉菜单并从竞争对手列表中选择竞争对手,例如竞争对手1到竞争对手100。 如果您需要任何额外信息,请告诉我。
答案 0 :(得分:0)
试试这个,解释包括:
yourComboBox.Items.Clear() 'to make sure the ComboBox is empty before populating and to avoid duplicating records
If Val(yourTextbox.Text) > 0 Then 'basic checking
For x = 1 To Val(yourTextbox.Text) 'loop from 1 up to the value you entered into the textbox
yourComboBox.Items.Add(x) 'add the value of x which holds the current loop number/competitor
Next
End If