If you use the PB Vis Editor to place a combo box in a window.
The ability to edit the items displayed IN the combo box before code generation would be LOVELY!
The default combo box is generated with a height of 30
example:
I kept not being able to see the items in my combo box until a very astite user pointed out that my "30" should be about 300.ComboBoxGadget(#Combo_0, 40, 30, 450, 30); <-- LOOK 30!
AddGadgetItem(#Combo_0, -1, " 1 ")
AddGadgetItem(#Combo_0, -1, " 2 ")
AddGadgetItem(#Combo_0, -1, " 3 ")
There was nothing in the HELP docs about this default height... The example from the HELP worked...
I suppose I am dense but that tiny bit of information has made a BIG difference!
Which is why I ask to be able to EDIT the combobox items in Visual Designer.