Term
|
Definition
sends output to the immediate window during program execution. Places it in the output window (pg. 194). |
|
|
Term
|
Definition
Click on the far left side of the screen.
A breakpoint is an indicated point in project code where execution should break; used for debugging. |
|
|
Term
|
Definition
put a ' next to a line to green it out or comment it out. |
|
|
Term
|
Definition
if x < 100 then messagebox.show("")
else if..
else if..
else... |
|
|
Term
|
Definition
If statement inside of another if statement
|
|
|
Term
|
Definition
A context menu can be seen by placing your pointer over either the form, a button, a label, etc and right-clicking. The menu that comes up is called a context menu. It usually says:
View Code
Lock Controls
Paste
Properties |
|
|
Term
|
Definition
A procedure written to execute when an event occurs. So for a button, the event would be the clicking. |
|
|
Term
Integrated Development Environment (IDE) |
|
Definition
Tool for writing projects and solutions; includes an editor, tools, debugger, and other features for faster development.
It is the initial screen that you see when you open Visual Studio, and it usually has an empty environment with a Start Page and you can open or create a new project. |
|
|
Term
|
Definition
An error in a project that does not halt execution but causes erroneous results in the output.
I.E. - allowing someone to input a negative number for quantity or price. |
|
|
Term
|
Definition
An error that occurs as a program executes; causes execution to break.
Trying to divide by 0, file or program is not available. |
|
|
Term
|
Definition
An error caused by failure to follow the syntax rules of the language; often caused by typographical errors. The Editor informs you of syntax errors.
Spelling Error in the specified language (so visual basic for us) |
|
|