COMP 10 Q2 EXAM Flashcards
Visual basic is that the structure of VB is designed in a way that allows programmers to create executable code.
Exe Files
Also known as standard executable program, is used to create a standardize application that will run on any Microsoft Windows PC.
Standard EXE
Important part of visual basic where you put together your application. It is a Place where you’ll spend much of your time when you’re creating application. Also called integrated.
Visual environment/ Workspace
Indicates the project name, the current Visual Basic operating mode, and the current form.
Title bar
Has drop-down menus from which you control the operation of the Visual basic environment.
Menu bar
Has buttons that provide shortcuts to some of the menu options.
Toolbar
Bar that runs horizontally across an application window and contains either the name of the file or document you are viewing.
Title Bar
What are the three icons in the right side.
close, open and minimize
The line of the text that lies across the top of the Visual basic toolbar. Gives you access to many features within the development environment.
The Menu bar
Found in the Left side of the menus. You work with the actual files that make up your applications. You can create, open, print and save projects.
File Menu
It is next to file menu, you can perform the standard Clipboard Option such as cut, copy, paste. Redo and undo. You can use the “find” to search for text in the entire project.
Edit Menu
The heart of your project you can add or removed forms, code elements, user controls and property pages. Many of these menu options can be accessed by right-clicking the toolbox or project explorer.
Project Menu
The options on the format menu deal specifically with the size and placement of controls and form.
Format Menu
you can stop and start your applications, set watches and break points, and perform other tasks to help monitor your applications progress
Debug Option
You can control the whole visual basic environment from the menu bar but the toolbar gives you easy access to the menu bar commands that you frequently use.
Toolbar
Central to developing Visual Basic applications. It is where you draw your application.
Form Window
The first window you’ll become familiar with because it lets you visually create the user interface for your applications. contains the icons of all the basic controls that is, all the controls that are included in the visual basic development tools.
Toolbox Window
Lists all the properties of the object that is currently selected and gives you the opportunity to modify them. For instance, you can change the foreground and background colors of the form or the control that is currently selected. You can list properties in alphabetical order or group them in categories.
Properties Window
Show how a given from will be displayed when the program runs.
Form Layout Window
Displays a list of all forms and elements making up your application. You can also obtain a view of the Form or Code windows (window containing the actual basic coding
Project Window
Allows you to design your application’s user interface. Any applications can multiple forms, and you can open a number of form designers at Form window.
Form Designer Window
Controls visible in the Toolbox window when you launch the environment. It includes Label, Textbox and Command Button controls that are used in nearly every application
Objects
Objects are also called?
Controls
Attribute of an object that defines one of the object’s characteristics such as size, color, or screen location, or an aspect of its behavior, whether it is enabled or visible. To modify the characteristics of an object, change the values of its corresponding properties.
Property
Specifies whether an object’s border appears flat or with a 3D look.
Appearance
For controls displaying text, it specifies whether text is left, center or right-aligned. For controls such as a PictureBox or Toolbar, it specifies how the control itself is aligned on the form (top, bottom, left, or right).
Align or Alignment
Specifies the background color of the control.
BackColor
Specifies the background color of the control.
BackColor
Specifies the background color of the control.
BackColor
Generally, specifies whether or not a control has a border. For the Form itself, the type of border can be specified.
BorderStyle
The string of text that is to be displayed in the control.
Caption or Text
Determines whether or not he control can respond to user-generated event.
Enabled
For controls displaying text, specifies the font (name, style, size, etc.) to be applied to the displayed text.
Font
For controls displaying text, specifies the font (name, style, size, etc.) to be applied to the displayed text.
ForeColor
Specifies the height of the control. The default unit is the twip, which is 1/1440 of an inch.
Height
Specifies the element number of a control if the control is a member of a control array.
Index
Specifies the distance between the internal left edge of a control and the left edge of its container. The default unit is the twip, which is 1/1440 of an inch.
Left
The string value used to refer to the control in code.
Name
Specifies the graphic to be displayed in the control.
Picture
Specifies the tab order of a control within its parent form.
Table Index
Specifies whether or not the user can use the Tab key to give focus to the control.
TabStop
String containing extra data associated with the control.
Tag
Specifies text to be displayed when the mouse is paused over the control whether or not the user can use the Tab key to give focus to the control.
ToolTip
Specifies the distance between the internal top edge of a control and the top edge of its container. The default unit is the twip, which is 1/1440 of an inch.
Top
Specifies whether the control is visible or hidden
Visible
Specifies the width of the control. The default unit is the twip, which is 1/1440 f an inch.
Width
is a built-in Visual Basic function that causes a message box to be displayed to the user. The first parameter this function takes is the text string you wish to have displayed.
MsgBox
Also takes other parameters to specify things such as what buttons to display and what caption to use.
MsgBox
What is the code that you use to encode on a text box or a command button.
MsgBox (“_____”)
Is a computer program that does not load any external module, library function, or program and that was designed to boot with the bootstrap procedure of the target processor.
Stand Alone Program
Stand Alone Program is also known as a?
Independent
Events are what happen in and around your program.
written in code editor
It is when a user clicks a button, many events occur:
The mouse button is pressed, the Command Button in your program is clicked….
Events
It occurs when you double-click a control in the VB environment.
Event