font_variable="Facename[, point size[, charset[, PLAIN BOLD ITALIC ]]]" 

userform="A userform is a dialog box used to collect and/or organize/show data" 

controls="Controls are buttons or text fields which can be used to get input from the user." 

statements="A list of instructions entered in the VB Editor that a computer understands."
project="The collection of all of the items contained in and referenced by an Office document."

functions="A function procedure declares the name, arguments, and code that form the body of a Function procedure that returns a value to the calling prodedure."

subs="A sub is a series of VB statements enclosed by the Sub and End Sub statements that performs actions but doesn't return a value. A Sub procedure can take arguments, such as constants, variables, or expressions that are passed by a calling procedure. If a Sub procedure has no arguments, the Sub statement must include an empty set of parentheses."

buzz="A central character from a famous Disney movie called TOY STORY."
controls="Controls are buttons or text fields which can be used to get input from the user."

object="Object variables are addresses that refer to objects. Using the Set statement, a variable declared as an Object can have any object reference assigned to it, such as a button or an image."

buzz="A central character from a famous Disney movie called TOY STORY."

controls="Controls are buttons or text fields which can be used to get input from the user."

objects="Object variables are addresses that refer to objects. Using the Set statement, a variable declared as an Object can have any object reference assigned to it, such as a button or an image."

property_proc="A Property Procedure declares the name, arguments, and code that form the body of a Property Let procedure, which assigns a value to a property, such as color, font, transparency etc."

property="An objects characteristic such as its color, font, transparency etc."

statements="A list of instructions entered in the VB Editor that a computer understands."

variables="Are names used to represent an item of data, the main types being  text [Called Strings], numbers [Called Integers, Long, Single etc], or Boolean [True or False], Dates and Currency, and important in some of the more advanced lessons later on, Objects."

vbeditor="The main window in the VB Editor is the 'code' window, where the statements for the projects are entered. From the 'View' menu you can also show on the left hand side the 'Project Explorer', which lists all of the items contained in and referenced in a particular project. Other windows that can be viewed are the 'Properties' window and 'Object Browser' window."

proc="A named sequence of statements executed as a unit. Types of procedures are Sub,Function or Property."
