Term
|
Definition
| a list of variables, user-defined classes, and previously written procedures and functions (stored in a library somewhere in the computer network) needed for a particular computer application. |
|
|
Term
|
Definition
| How much of an entire Visual Basic application can access a given variable.
|
|
|
Term
|
Definition
| the act of associating a window object (typically a text box) to a variable. |
|
|
Term
|
Definition
| a set of statements that can repetitively be executed, in order, until a particular condition is met. |
|
|
Term
|
Definition
| the act of a function calling or invoking itself. |
|
|
Term
|
Definition
| telling the Visual Basic compiler that a particular name will contain a specific type of data; for instance, variable Name will contain text. |
|
|
Term
|
Definition
| provide a starting value for the variable. Visual Basic 2008 allows that be done on a DIM statement: DIM Count As Integer = 0 |
|
|
Term
|
Definition
| a block of code separate from the main process. Usually performs a specific or distinct process. |
|
|
Term
|
Definition
| a prewritten series of statements that produce a specific and single output. |
|
|
Term
|
Definition
| a piece of data given to a function from a source outside of the function itself. |
|
|
Term
|
Definition
| an item that displays on a application's Form, or the Form itself. A container data type that holds private data, propertie, and methods |
|
|
Term
|
Definition
| a particular activity that is caused by the same action on an object. For instance, clicking on a button. |
|
|
Term
|
Definition
| a picture representing an object or application. |
|
|
Term
|
Definition
| the process of attaching one text string to the back of another. |
|
|
Term
|
Definition
| The representation of a large number as a value between 0 and 10 raised to a power of 10. For instance, 2.34 x 106 |
|
|
Term
|
Definition
| Representing a number in Base 16. The “digits” representing 10-15 are indicated using A, B, C, D, E, and F. |
|
|
Term
|
Definition
| The process of searching for a value without an exact match; the criteria would contain a portion of the desired value. |
|
|
Term
|
Definition
| An object created within a program. |
|
|
Term
|
Definition
| A procedure defined as part of an object. Primary means to interact with the data contained in the object. |
|
|
Term
|
Definition
| Not allowing procedures to directly access data contained in a class. |
|
|
Term
|
Definition
| When a class is created based upon another class, it obtains all data, properties, and methods of the original class. |
|
|
Term
|
Definition
| Multiple class methods with the same name yet slightly different argument lists. |
|
|
Term
|
Definition
| a variable whose data type is a class. |
|
|
Term
|
Definition
| the class method that intializes member data upon variable declaration. |
|
|
Term
|
Definition
| the process of creating a variable whose data type is a class. |
|
|