You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Samuel Gomes edited this page Feb 12, 2024
·
2 revisions
List and Dropdown list controls' items are stored in the control's Text property, but they must be manipulated by using the following methods, because they also update important internal variables used to display the control:
SUB AddItem
Adds a new item to the end of the list.
AddItemControlID,"Item"
SUB RemoveItem
Removes the item specified.
RemoveItemControlID,ItemIndexToRemove%
SUB ResetList
Erases all list items.
ResetListControlID
SUB ReplaceItem
Replaces the text of the specified item with the new one provided.