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
{{ message }}
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
Samuel Gomes edited this page Nov 25, 2022
·
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.
AddItem ControlID, "Item"
SUB RemoveItem
Removes the item specified.
RemoveItem ControlID, ItemIndexToRemove%
SUB ResetList
Erases all list items.
ResetList ControlID
SUB ReplaceItem
Replaces the text of the specified item with the new one provided.
ReplaceItem ControlID, ItemIndexToReplace%, "New item"