QB64.org Forum
QB64 Team Software => InForm Discussion => Topic started by: KnotHead on March 01, 2019, 06:27:19 pm
-
I have a drop down inserted to the form and one item showing. Now I need 4 items in the list.
How do I add more items?
Brian.
-
AddItem ListBox1, "New item" 'ListBox1 should be the name you gave to the control you added to your form.
More list methods here: https://github.com/FellippeHeitor/InForm/wiki/List-methods
-
Now, if you want to add more items at design time, then you just separate them using a new line escape sequence (\n), as in Item 1\nItem 2\nItem 3\nEtc...
-
Thank you.