I am wanting to add an item to a combobox, so I thought I could do something like this:
Is there a way to create a combobox item, then set the values of that item?
tia,
flynn
Code:
dim cboItem as ComboBoxItem
cboItem = ComboBox1.add()
cboItem.text = "123"
cboItem.tag = "abc"
Is there a way to create a combobox item, then set the values of that item?
tia,
flynn