ict Flashcards
This control is normally used as a description for other controls.
Label
The most common example of an application program for most people.
Windows Form Application
A template whose output can be read by a terminal or command line interface such as the Command Prompt.
Console Application
What do you call a template which contains code that can be accessed by several programs all the same time?
Class Library
It is a broad term for any system, either physical or software based, that allows a user to connect with a given technology.
User Interface
This is the object found in the toolbox that you can drag and drop to your form.
Controls
The user normally clicks this control in order to “start” the program processing.
Button
This is an input field that allows the user to type in values.
Textbox
When you create a project in VB, your starting point for a VB.NET application is the ______________.
Form
Which of the following is not a control?
Dim
Text Box
Label
dim
Elements of Visual Basic.Net
Keywords
Identifier
Variable
Data Types
what are the data types
numeric and non numeric
reserved words in visual basic.net, these are
the commands that are being used and accepted.
keywords
these are the names given to variables in the
program
Identifier
temporary data container stored in memory,
it is a temporary storage location of data in a program
Variable
To declare a variable, the ________ statement is used.
dim
An ____________ is a signal that the user has done something with the
controls and the form.
event
Programs made in Visual Basic, or
those that can simply be called
“window” applications, are _________________
event-driven programs
Merging the Front End and Back
End Applications
To do this, you must do two things:
- Assign the value of the Text Box to a
variable. - Select the “Click” event for the button.
means that no other part of the code can see the code within
Private Sub and End Sub block other than the button.
Private
is a shortcut for subroutine, which tells Visual Basic that there are
lines of code following it that need to be executed.
Sub
is the event; in this case the specific event is for the button to
be clicked.
_Click()