Save
computer omsim
Save
Share
Learn
Content
Leaderboard
Learn
Created by
faun
Visit profile
Cards (23)
LOOPING STATEMENT
is a program instruction that repeats some statement or sequence of statements a specified number of times
ENUMERATED ARRAYS
are distinguished declarations inside curly brackets
DO
LOOP
WHILE
STATEMENT
performs the statement first and then evaluates the condition after each process
DO LOOP UNTIL STATEMENT
runs a loop until a logical statement is true, stopping when the expression is true
WHILE END WHILE LOOP STATEMENT
executes a series of statements as long as a given condition is true
FOR NEXT LOOP STATEMENT
repeats a group of statements a specified number of times
COMBO BOX
is derived from the word combination box, combining features of both a text box and a list box
SYNTAX
defines the set of rules that determine the meaning of various combinations of symbols
ITEMS.COUNT
is the property used to determine the number of items in a list box
Array
variables
are distinguished by ( ) or [ ]
ITEMS.REMOVE
is the method used to remove the selected item from a list box
SELECTED INDEX PROPERTY
is used to determine the position of the selected item in a list box
BEEP COMMAND
is used to generate a warning sound
BEGINUPDATE
is the method that turns off the visual updating of the list box
ITEMS.ADD
is the method for adding an item into the list box
INDEX
OR
ELEMENT
is the specified number inside a pair of open and close parentheses
DO LOOP STATEMENT
repeats a block of statements while a condition is true or until a condition becomes true
DO WHILE LOOP STATEMENT
evaluates the condition first; if false, it does not perform a block of statements within the loop body
LIST BOX
is a graphical control element that allows the user to select one or more items from a list contained within a static, multiple line text box
ARRAY
is a special type of variable that can contain or hold one or more values of the same data type with reference to only one variable name
If No Item Selected
SELECTEDINDEX
IS -1
Button is dimmed BTNADD.ENABLED =
FALSE
Enumerated
arrays
are distinguished by Curly Brackets