Control Types
Statements
Logic
Testing
Software Engineering
100
This property allows you to define a constant distance between one or ore edges of a control and one or more edges of a form or other container. Thus, if a user resizes a form a run time, the control edges will always maintain a specific distance from the edges.
What is an anchor?
100
Starts variable declaration statements as well as class instantiations
What is Dim?
100
At what value does an array index begin?
What is 0 (zero)?
100
I give you a place to stop while running in debug mode.
What is a breakpoint?
100
This represents a task in a program
What is a method?
200
I drop, stop, and you scroll.
What is a ComboBox?
200
I'm the piece of code that writes out what the error message (or exception) is in your Immediate Window.
What is ex.Message?
200
This is usually located at the bottom of Visual Studio to give you an idea on how to get your program up and running again.
What is the Error List?
200
These let you declare variables and procedures once and then reuse them whenever needed
What is an object?
300
This creates a subsection of a form that can host other controls.
What is a panel control?
300
If an exception occurs when processing the Try block, each of these are examined in textual order to determine whether it handles the exception, with exception representing the exception that has been thrown.
What is a Catch Statement?
300
This lets you type commands and view potential results
What is the Immediate Window?
300
This is a library of routines, usually written in C, C++, or Pascal, that you can link to and use at run-time.
What is a DLL?
400
This is a visual element that helps keeps controls like radio buttons together and related.
What is a groupbox?
400
This automatically brings up a new window which tells you a message.
What is Messagebox.Show()
400
After you double click an element in design view, a piece of code should be written in order to proceed forward to handle this event.
What is on click?
400
This prints out information to the output window while your program is running in debug mode.
What is Debug.Write()?
400
This is a pre-programmed piece of interface code in Visual Studio that acts as a building block for your application.
What is a control?
500
This is a visual manifestation of an array in code.
What is a listbox?
500
I just tried out for the team, caught what was thrown to me, and finally made the big league! I also provide a way to handle some or all possible errors that may occur in a given block of code, while still running code.
What is Try...Catch...Finally Statement?
500
The first section of Visual Studio a developer should adjust before proceeding to code.
What is the Properties Window?
500
This contains attributes like variables, methods, and properties as is, and can be instantiated to be used in your program and/or other programs.
What is a class?
M
e
n
u