• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/42

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

42 Cards in this Set

  • Front
  • Back
An ______ is a item in a program that contains data and has the ability to perform operations.
object
The data that an object contains is referred to as its ________, or _______.
properties, attributes
The operations that an object can perform are called ________.
methods
A _______ is a specific type of object that usually appears in a program's graphical user interface.
control
The window that contains the other elements is known as a ______ control.
Form
The small boxes that accept keyboard input are known as ________ controls.
TextBox
The areas that simply display text are known as ______ controls.
Label
The buttons that perform operations when clicked with the mouse are known as ________ controls.
Button
A _______ is simply a piece of data that determines some characteristic of the control.
property
Programs that operate in a GUI environment must be ___________.
event-driven
An _______ is an action that takes place within a program, such as the clicking of a button control.
event
If you wish for a control to respond to a specific event, you must write a set of programming statements known as an _______ _______.
event handler
A rectangular button-shaped object that performs an action when clicked with the mouse.
Button
A box that is checked or unchecked when clicked with the mouse.
CheckBox
A control that s the combination of a ListBox and a TextBox.
ComboBox
A window, onto which other controls may be placed.
Form
A rectangular border that functions as a container for other controls.
GroupBox
A horizontal scroll bar that, when moved with the mouse, increases or decreases a value.
HScrollBar
A box that displays text that cannot be changed or entered by the user.
Label
A box containing a list of items.
ListBox
A control that displays a graphic image.
PictureBox
A round button that is either selected or deselected when clicked with the mouse.
RadioButton
A rectangular area in which the user can enter text, or the program can display text.
TextBox
A vertical scroll bar that, when moved with the mouse, increases or decreases a value.
VScrollBar
What are the 3 conventions you should follow when naming controls?

1) The first three letters of the name (prefix) should be a lowercase prefix indicating the control's type.


2) The first letter after the prefix should be uppercase.


3) The part of the control name that appears after the three-letter prefix should describe the control's purpose in the application.

What are the steps for developing a visual basic application?

1) Clearly define what the application is to do.


2) Visualize the application running on the computer and design its user interface.


3) Determine the controls needed.


4) Define the values of each control's relevant process.


5) Determine the event handlers and other code needed for each control.


6) Create a flowchart or pseudocode version of the code.


7) Check the flowchart or pseudocode for errors.


8) Start Visual Studio and create the forms and other controls identified in Step 3.


9) Use the flowcharts or pseudocode from Step 6 to write the actual code.


10) Attempt to run the application. Correct any syntax errors found and repeat this step as many times as necessary.


11) Once all syntax errors are corrected, run the program with test data for input. Correct any runtime errors. Repeat this step as many times as necessary.



A __________ is a diagram that graphically depicts the flow of a method.
flowchart
_________ is a human-readable code that looks similar to programming language code.
Pseudocode
A ________ _______ is the incorrect use of a programming language element, such as a keyword, operator, or programmer-defined name.
syntax error
A mistake in a mathematical formula is a common type of ________ ______.
runtime error
Each Visual Basic application that you create is called a(n) _________.
project

What is the Designer window used for?

You use the Designer window to create an application's graphical user interface. The Designer window shows the application's form, and it allows you to visually design its appearance by placing the desired controls that will appear on the form when the application executes.

What does the Solution Explorer window used for?

A solution is a container for holding VB projects. When you create a new VB project, a new solution is automatically created to contain it. The Solution Explorer window allows you to navigate among the files in a VB project window.

What is the Properties window used for?

When you are creating a VB application, you use the Properties window to examine and change a control's properties.

The ______ ______ menu bar at the top of the Visual Studio window that provides menus such as FILE, EDIT, VIEW, PROJECT, etc.

Visual Studio

The _______ _______ contains buttons that execute frequently used commands.

standard toolbar

The _________ is a window that allows you to select the controls that you want to use in an application's interface.

Toolbox

A ________ is a small rectangular box that pops up when you hover the mouse pointer over a button on the toolbar or in the Toolbox for a few seconds. It contains a short description of the button's purpose.

ToolTip

When the windows are _______, it means that they're attached to one of the edges of the Visual Studio window. Alternatively, the windows can be detached, or _________.

docked, floating



What is the Microsoft Developer Network (MSDN) Library?

It's a Microsoft library that provides complete documentation for Visual Basic, as well as other programming languages included in Visual Studio. You will also find code samples, tutorials, articles, and access to Microsoft instructional videos.

True or False:


A window cannot float if it's Auto Hide feature is turned on.

True

TIP:

Remember, you can always reset the window layout by clicking Window on the menu bar, and then selecting Reset Window Layout. If you accidentally close the Designer window, the Solutions Explorer window, or the Properties window, you can use the VIEW menu to redisplay them.