Visual Basic Chapter 3

0.0(0)
studied byStudied by 2 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/37

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

38 Terms

1
New cards

application interface

what appears on the screen when a Visual Basic application is running

2
New cards

assignment statement

uses the equal sign to give the object property on the left of the equal sign the value on the right of the equal sign

3
New cards

body

the statements in a procedure

4
New cards

class

program code and data to create an object

5
New cards

code command

displays the form module for a form. found in the view menu

6
New cards

CodeEditorwindow

the part of the IDE that displays the form module where program code is entered

7
New cards

comment

information placed in a program to explain

8
New cards

compiler

a program that translates program code into a separate executable file

9
New cards

end command

stops the current application. found in the run menu. the end button can be used instead

10
New cards

end sub

ends the sub statement

11
New cards

event-driven program

waits until an event occurs before executing code

12
New cards

exit command

closes the Visual Basic IDE. found in the File menu

13
New cards

form layout window

the part of the IDE that allows the application's form position to be selected relative to the computer screen

14
New cards

form module

a file that contains the program code for a form

15
New cards

IDE (integrated development environment)

contains all the tools necessary to create a Visual Basic application

16
New cards

interface

what appears on the screen when an application is running

17
New cards

interpreter

a program that automatically reads each line of program code as it is entered. it can highlight mistakes

18
New cards

make command

creates an executable file. found in the file menu

19
New cards

menu bar

the part of the IDE that contains the names of menus that contain commands

20
New cards

name (font)

font sub property that can be assigned a valid don't name in quotation marks

21
New cards

name (object)

object property used to identify the object

22
New cards

object

has a visual representation and is used to reduce the complexity of graphics-based programs

23
New cards

OOP (Object Oriented Programming)

uses classes to create objects and is widely used because it generates reusable, reliable code

24
New cards

operator precedence

the order in which operators are evaluated in an expression (pemdas)

25
New cards

private

indicated the procedure cannot be accessed outside of the form module

26
New cards

program code

instructions that tell an application's objects to behave when a user interacts with them

27
New cards

project

Visual Basic file that maintains all the files associated with an application, including the form and its objects and program code

28
New cards

project explorer window

the part of the IDE that lists the files in the current project

29
New cards

project window

the part of the IDE that lists the properties values of an object

30
New cards

property

the part of an object that defines it's appearance, behavior, position, and other attributes

31
New cards

remove project command

removed the current project from the IDE. found in the file menu

32
New cards

statement

a line of code in a program that tells the computer what to do

33
New cards

sub

declares a procedure

34
New cards

tool bar

the part of the IDE containing buttons that provide shortcuts to commonly performed actions

35
New cards

tool box

the part of the IDE that contains controls that are used to create objects on a form object

36
New cards

view code button

clicked to view the form module. found in the project explorer window

37
New cards

view object button

clicked to view the form. found in the project explorer window

38
New cards

Visual Basic

object-oriented programming language used to create Windows applications