Deck 11: Using and Writing Visual Basic for Applications Code

ملء الشاشة (f)
exit full mode
سؤال
The event name for a procedure being viewed in the VBE is indicated in the Object box. ____________________
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
A control is hidden in Access when the Visible property is False in a Case statement.
سؤال
When using the RGB function in VBA, the color range for each value must be between the numbers of 0 through 150.
سؤال
To convert a string to proper case where the first letter of every word in the string is uppercase, the StrConv function is used in VBA code.____________________
سؤال
It is important to enter VBA code using appropriate capitalization in all statements so that the code can be read and maintained properly.
سؤال
Procedures included in a standard module may only be used by the form or report for which the event procedure was coded.
سؤال
VBA has features that are unique for each Microsoft Office program in addition to features that are common across applications.
سؤال
The AfterUpdate event occurs before data is changed in a control or record and the data is updated in the database.____________________
سؤال
A control is displayed when the IsNull property is True in a procedure statement.____________________
سؤال
The statement that indicates a Case control structure ends with End Select.
سؤال
Access events all have associated event properties.____________________
سؤال
Event procedures are always Sub procedures.
سؤال
VBA procedures are created, modified, and displayed in the ____ window.

A)Immediate
B)Code
C)VBA
D)Query
سؤال
An input mask can accomplish the same verification procedures on data that VBA can accomplish such as verifying the @ symbol in an email address.
سؤال
The Declarations section of a VBA module contains statements that apply to all procedures in the module.____________________
سؤال
When a module is created it must begin with a Procedures section that applies to all procedures in the module.____________________
سؤال
The function that accepts a single string argument as input, converts the value of the argument to lowercase letters, then returns the converted value is the LCase function. ____________________
سؤال
An example of a conditional control structure is the Case control structure.____________________
سؤال
The way an object responds when an event occurs is determined by an associated object property.____________________
سؤال
It is not possible to convert an Access macro to VBA code.
سؤال
VBA is considered to be a(n)____ programming language because instructions are executed on objects in the database.

A)markup
B)object-oriented
C)compiler
D)assembly
سؤال
To assign a purple ForeColor property to a control, the ____ function of VBA must be used.

A)vbColor
B)vbPurple
C)RGB
D)RGCYK
سؤال
The type of procedure that executes instructions and accepts input values, but does not return a value and cannot be used in expressions, is a(n)____ procedure.

A)Function
B)Sub
C)Reference
D)Comment
سؤال
Which of the following is a type of VBA procedure?

A)Format
B)Control
C)Reference
D)Function
سؤال
Which code statement will test a control to see if the data meets specific requirements?

A)VisitDate.ForeColor=vbRed
B)ZipCode=27531
C)Select Case [State]
D)If VisitDate
سؤال
When a procedure is created, the ____ determines where the procedure is available.

A)Declarations statement
B)scope
C)Procedure
D)object properties
سؤال
The type of procedure that may be used by more than one object in a database is a(n)____.

A)standard module
B)function statement
C)public procedure
D)declarations module
سؤال
A predefined memory location initialized to a value that does not change in VBA is called a(n)____.

A)Procedure default
B)VBA constant
C)Function constant
D)Property default
سؤال
Which of the following Access events accepts new or changed data from a user entry by default.

A)OnClick
B)AfterUpdate
C)OnChange
D)OnKeyPress
سؤال
Which of the following is a method used in a procedure to move the focus to a specific object or control.

A)Dim
B)SetFocus
C)Me.Undo
D)IsNull
سؤال
In the Declarations statement "Option Compare Database," Database determines how the procedure will ____ the data.

A)organize
B)filter
C)run
D)sort
سؤال
In a Case control structure, Case Else instructs the procedure to ____.

A)stop running
B)sort data in a new manner
C)filter data based on new requirements
D)start an alternative set of actions
سؤال
To declare variables and the VBA data types associated with those variables in a procedure a(n)____ must be used.

A)Sub statement
B)Declaration statement
C)Dim statement
D)Case statement
سؤال
The purpose of a VBA ____ is to respond to an event that occurs with an object or form control in an Access database.

A)statement
B)Case control
C)event
D)procedure
سؤال
The Immediate window allows the developer to test or ____ individual lines of VBA code.

A)restore
B)compile
C)debug
D)append
سؤال
Visual Basic for Applications is a(n)____ provided with Microsoft Office programs.

A)application
B)event builder
C)programming language
D)system program
سؤال
A ____ module is automatically created when the first event procedure for a form or report is created and it is associated with that specific form or report.

A)class
B)local
C)standard
D)public
سؤال
VBA code is created and modified using the ____.

A)Visual Basic Window
B)Visual Basic Editor
C)Visual Basic Design view
D)Procedure Window
سؤال
VBA is considered to be what type of language?

A)rule-based programming language
B)a markup language
C)an assembly language
D)an event-driven language
سؤال
Which of the following color options may be assigned to a control property as a VBA constant?

A)vbRed
B)RGB(255,0,0)
C)CMYK(0, 21, 151)
D)vbRGB(151, 12, 276)
سؤال
The following code is testing a field in the associated form for specific input.  Which string is the Case structure looking for in the form?
   Select Case [Course]
   Case "CIS 101"
   lblMessage, Caption = "Prerequisite CIS 100 required"

A)Course
B)CIS 100
C)CIS 101
D)Prerequisite CIS 100 required
سؤال
Which VB constant used in conjunction with the StrConv function will convert all characters of a string to upper case letters?

A)vbProperCase
B)vbLowerCase
C)vbUpperCase
D)vbAllCaps
سؤال
Because Louisa's code will only be used in Access, she can use a VBA constant in the code argument to change the City field's value to proper case.  Which VBA constant should Louisa use?

A)vbUpperCase
B)vbLowerCase
C)vbChangeCase
D)vbProperCase
سؤال
List four advantages of using VBA rather than macros in Access.
سؤال
Which code best represents the procedure Louisa has written to convert the City field values to proper case in the database?

A)Private Sub EventProcedure _ VB Constant     'Convert City to proper case     [ Field ] = VBA Function ([ Field ],   Event Procedure
End Sub
B)Private Sub Field _ EventProcedure     'Convert City to proper case     [ Field ] = VBA Function ([ Field ], VB Constant
End Sub
C)Private Sub Field _ EventProcedure     'Convert City to proper case     [ VB Constant ] = VBA Function ([ Field ], Field
End Sub
D)Private Sub VB Function _ EventProcedure     'Convert City to proper case     [ VBAFunction ] = ([ Field ], VB Constant
End Sub
سؤال
A control is not displayed when the Visible property is to ____.

A)Yes
B)No
C)True
D)False
سؤال
Color values for controls may be coded in several different ways.  Which type of color value represents color intensities of red, green, and blue instead of the color values ranging from 0-255?

A)RGB
B)VB constant
C)ColorIndex
D)hexadecimal
سؤال
Case-Based Critical Thinking Questions
Case 11-2 The Environmental Policy Group is collecting data on weather conditions throughout the southeast U.S. The database used for data collection is being used by field technicians throughout the region.  Louisa has been asked to update the database to reduce data entry mistakes.  Louisa will create some new procedures and update others in the database.
Louisa wants to be sure that all city locations are recorded in proper case in the database.  To do this, she needs to use the ____ event procedure which will automatically change the data entered in the City field to proper case any time a value is entered or changed in the field. For instance, if the user enters san antonio in the City field, the procedure will change the data to San Antonio and store it in the database.

A)OnChange
B)OnEnter
C)AfterUpdate
D)BeforeUpdate
سؤال
Case-Based Critical Thinking Questions
Case 11-1
Luca is the database administrator for a city parks and recreation department.  The department routinely uses community college interns to process applications and registration for the department's programs. It is important that the user interface minimize user input errors as much as possible.
Luca wants to be sure that a message appears to the user prompting that an email be sent to all program participants reminding them of the date the program begins when the Paid field in the form is marked paid.  What type of structure will Luca use to code an expression that tests the Paid field for an entry?

A)If structure
B)Case control structure
C)Compare control structure
D)If, then structure
سؤال
In addition to the single quotation mark ('), a comment line in VBA code may begin with ____.

A)Rem
B)Comment
C)slash (/)
D)semi-colon (;)
سؤال
Which VB data type stores values of True or False?

A)Decimal
B)Object
C)Variant
D)Boolean
سؤال
Case-Based Critical Thinking Questions
Case 11-1
Luca is the database administrator for a city parks and recreation department.  The department routinely uses community college interns to process applications and registration for the department's programs. It is important that the user interface minimize user input errors as much as possible.
Because the event procedure that Luca is coding will only be used for the Participant Information form, the procedure is a(n)____ procedure.

A)private
B)public
C)remote
D)shared
سؤال
A comment line in the Code windows is indented and appears in the color ___.

A)red
B)green
C)blue
D)black
سؤال
List the five VBA naming rules that must be followed when naming VBA elements such as Sub procedures, arguments, and functions
سؤال
In the following code, which field in the associated form is being used for the Case structure?
   Select Case [Course]
   Case "CIS 101"
   lblMessage, Caption = "Prerequisite CIS 100 required"

A)CIS 101
B)Course
C)CIS 100
D)Case CIS 101
سؤال
Case-Based Critical Thinking Questions
Case 11-1
Luca is the database administrator for a city parks and recreation department.  The department routinely uses community college interns to process applications and registration for the department's programs. It is important that the user interface minimize user input errors as much as possible.
Luca needs to use a VBA function in his code to return a value of True if the Paid field has no data or a value of False if the Paid field is not empty. Which VBA function should Luca use?

A)IsPaid
B)IsNum
C)IsNull
D)IsBound
سؤال
The Visual Basic window is accessed using the ____ group from the Create tab.

A)Forms
B)Macros & Code
C)Templates
D)VBA
سؤال
All event procedures in a class module are a(n)____ procedures which means they may only be used for the form or report for which the class module was created.

A)public
B)local
C)Case
D)Sub
سؤال
Case-Based Critical Thinking Questions
Case 11-1
Luca is the database administrator for a city parks and recreation department.  The department routinely uses community college interns to process applications and registration for the department's programs. It is important that the user interface minimize user input errors as much as possible.
After creating the message control using VBA, which property of the control must be coded to display the message "Email the participant with the start date of the program"?

A)Caption
B)Text
C)Special Effect
D)Statement
سؤال
If the Paid field is marked as paid in the Participant Information form, Luca wants the following message to appear on the screen "Email the participant with the start date of the program."  Which type of VBA control should Luca use in the procedure to create the message?

A)combo box
B)radio button
C)message
D)label
سؤال
Match between columns
D isplays the current object type the procedure acts on.
coding
D isplays the current object type the procedure acts on.
Sub statement
D isplays the current object type the procedure acts on.
logic error
D isplays the current object type the procedure acts on.
RGB
D isplays the current object type the procedure acts on.
function call
D isplays the current object type the procedure acts on.
Current
D isplays the current object type the procedure acts on.
Assignment statement
D isplays the current object type the procedure acts on.
Visual Basic window
D isplays the current object type the procedure acts on.
Load
D isplays the current object type the procedure acts on.
bas
D isplays the current object type the procedure acts on.
Object box
D isplays the current object type the procedure acts on.
Case statement
D isplays the current object type the procedure acts on.
Immediate window
D isplays the current object type the procedure acts on.
Procedure box
سؤال
Match between columns
D isplays the event name for the current event procedure
coding
D isplays the event name for the current event procedure
Sub statement
D isplays the event name for the current event procedure
logic error
D isplays the event name for the current event procedure
RGB
D isplays the event name for the current event procedure
function call
D isplays the event name for the current event procedure
Current
D isplays the event name for the current event procedure
Assignment statement
D isplays the event name for the current event procedure
Visual Basic window
D isplays the event name for the current event procedure
Load
D isplays the event name for the current event procedure
bas
D isplays the event name for the current event procedure
Object box
D isplays the event name for the current event procedure
Case statement
D isplays the event name for the current event procedure
Immediate window
D isplays the event name for the current event procedure
Procedure box
سؤال
Match between columns
D esignates the start of an alternative set of actions
coding
D esignates the start of an alternative set of actions
Sub statement
D esignates the start of an alternative set of actions
logic error
D esignates the start of an alternative set of actions
RGB
D esignates the start of an alternative set of actions
function call
D esignates the start of an alternative set of actions
Current
D esignates the start of an alternative set of actions
Assignment statement
D esignates the start of an alternative set of actions
Visual Basic window
D esignates the start of an alternative set of actions
Load
D esignates the start of an alternative set of actions
bas
D esignates the start of an alternative set of actions
Object box
D esignates the start of an alternative set of actions
Case statement
D esignates the start of an alternative set of actions
Immediate window
D esignates the start of an alternative set of actions
Procedure box
سؤال
Match between columns
T ests VBA procedures without changing any data in the database
coding
T ests VBA procedures without changing any data in the database
Sub statement
T ests VBA procedures without changing any data in the database
logic error
T ests VBA procedures without changing any data in the database
RGB
T ests VBA procedures without changing any data in the database
function call
T ests VBA procedures without changing any data in the database
Current
T ests VBA procedures without changing any data in the database
Assignment statement
T ests VBA procedures without changing any data in the database
Visual Basic window
T ests VBA procedures without changing any data in the database
Load
T ests VBA procedures without changing any data in the database
bas
T ests VBA procedures without changing any data in the database
Object box
T ests VBA procedures without changing any data in the database
Case statement
T ests VBA procedures without changing any data in the database
Immediate window
T ests VBA procedures without changing any data in the database
Procedure box
سؤال
Match between columns
A statement that assigns the value of an expression to a field, control, or property.
coding
A statement that assigns the value of an expression to a field, control, or property.
Sub statement
A statement that assigns the value of an expression to a field, control, or property.
logic error
A statement that assigns the value of an expression to a field, control, or property.
RGB
A statement that assigns the value of an expression to a field, control, or property.
function call
A statement that assigns the value of an expression to a field, control, or property.
Current
A statement that assigns the value of an expression to a field, control, or property.
Assignment statement
A statement that assigns the value of an expression to a field, control, or property.
Visual Basic window
A statement that assigns the value of an expression to a field, control, or property.
Load
A statement that assigns the value of an expression to a field, control, or property.
bas
A statement that assigns the value of an expression to a field, control, or property.
Object box
A statement that assigns the value of an expression to a field, control, or property.
Case statement
A statement that assigns the value of an expression to a field, control, or property.
Immediate window
A statement that assigns the value of an expression to a field, control, or property.
Procedure box
سؤال
Why is it recommended that procedures be compiled after they are first created or when changes are made to the procedure code?
سؤال
Match between columns
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
coding
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Sub statement
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
logic error
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
RGB
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
function call
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Current
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Assignment statement
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Visual Basic window
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Load
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
bas
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Object box
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Case statement
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Immediate window
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Procedure box
سؤال
Match between columns
The statement that marks the start of a new Sub procedure.
coding
The statement that marks the start of a new Sub procedure.
Sub statement
The statement that marks the start of a new Sub procedure.
logic error
The statement that marks the start of a new Sub procedure.
RGB
The statement that marks the start of a new Sub procedure.
function call
The statement that marks the start of a new Sub procedure.
Current
The statement that marks the start of a new Sub procedure.
Assignment statement
The statement that marks the start of a new Sub procedure.
Visual Basic window
The statement that marks the start of a new Sub procedure.
Load
The statement that marks the start of a new Sub procedure.
bas
The statement that marks the start of a new Sub procedure.
Object box
The statement that marks the start of a new Sub procedure.
Case statement
The statement that marks the start of a new Sub procedure.
Immediate window
The statement that marks the start of a new Sub procedure.
Procedure box
سؤال
Match between columns
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
coding
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Sub statement
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
logic error
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
RGB
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
function call
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Current
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Assignment statement
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Visual Basic window
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Load
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
bas
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Object box
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Case statement
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Immediate window
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Procedure box
سؤال
Match between columns
An error that occurs when a procedure produces incorrect results.
coding
An error that occurs when a procedure produces incorrect results.
Sub statement
An error that occurs when a procedure produces incorrect results.
logic error
An error that occurs when a procedure produces incorrect results.
RGB
An error that occurs when a procedure produces incorrect results.
function call
An error that occurs when a procedure produces incorrect results.
Current
An error that occurs when a procedure produces incorrect results.
Assignment statement
An error that occurs when a procedure produces incorrect results.
Visual Basic window
An error that occurs when a procedure produces incorrect results.
Load
An error that occurs when a procedure produces incorrect results.
bas
An error that occurs when a procedure produces incorrect results.
Object box
An error that occurs when a procedure produces incorrect results.
Case statement
An error that occurs when a procedure produces incorrect results.
Immediate window
An error that occurs when a procedure produces incorrect results.
Procedure box
سؤال
Match between columns
The Access event that occurs when a form is opened and the records are displayed.
coding
The Access event that occurs when a form is opened and the records are displayed.
Sub statement
The Access event that occurs when a form is opened and the records are displayed.
logic error
The Access event that occurs when a form is opened and the records are displayed.
RGB
The Access event that occurs when a form is opened and the records are displayed.
function call
The Access event that occurs when a form is opened and the records are displayed.
Current
The Access event that occurs when a form is opened and the records are displayed.
Assignment statement
The Access event that occurs when a form is opened and the records are displayed.
Visual Basic window
The Access event that occurs when a form is opened and the records are displayed.
Load
The Access event that occurs when a form is opened and the records are displayed.
bas
The Access event that occurs when a form is opened and the records are displayed.
Object box
The Access event that occurs when a form is opened and the records are displayed.
Case statement
The Access event that occurs when a form is opened and the records are displayed.
Immediate window
The Access event that occurs when a form is opened and the records are displayed.
Procedure box
سؤال
Match between columns
The process of writing instructions in a programming language.
RGB
The process of writing instructions in a programming language.
coding
The process of writing instructions in a programming language.
Sub statement
The process of writing instructions in a programming language.
logic error
The process of writing instructions in a programming language.
function call
The process of writing instructions in a programming language.
Current
The process of writing instructions in a programming language.
Assignment statement
The process of writing instructions in a programming language.
Visual Basic window
The process of writing instructions in a programming language.
Load
The process of writing instructions in a programming language.
bas
The process of writing instructions in a programming language.
Object box
The process of writing instructions in a programming language.
Case statement
The process of writing instructions in a programming language.
Immediate window
The process of writing instructions in a programming language.
Procedure box
سؤال
Match between columns
The standard prefix for modules in Access.
coding
The standard prefix for modules in Access.
Sub statement
The standard prefix for modules in Access.
logic error
The standard prefix for modules in Access.
RGB
The standard prefix for modules in Access.
function call
The standard prefix for modules in Access.
Current
The standard prefix for modules in Access.
Assignment statement
The standard prefix for modules in Access.
Visual Basic window
The standard prefix for modules in Access.
Load
The standard prefix for modules in Access.
bas
The standard prefix for modules in Access.
Object box
The standard prefix for modules in Access.
Case statement
The standard prefix for modules in Access.
Immediate window
The standard prefix for modules in Access.
Procedure box
سؤال
Match between columns
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
coding
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Sub statement
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
logic error
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
RGB
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
function call
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Current
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Assignment statement
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Visual Basic window
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Load
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
bas
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Object box
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Case statement
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Immediate window
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Procedure box
سؤال
Match between columns
A statement that contains the name of the function and any parameters required by the function.
coding
A statement that contains the name of the function and any parameters required by the function.
Sub statement
A statement that contains the name of the function and any parameters required by the function.
logic error
A statement that contains the name of the function and any parameters required by the function.
RGB
A statement that contains the name of the function and any parameters required by the function.
function call
A statement that contains the name of the function and any parameters required by the function.
Current
A statement that contains the name of the function and any parameters required by the function.
Assignment statement
A statement that contains the name of the function and any parameters required by the function.
Visual Basic window
A statement that contains the name of the function and any parameters required by the function.
Load
A statement that contains the name of the function and any parameters required by the function.
bas
A statement that contains the name of the function and any parameters required by the function.
Object box
A statement that contains the name of the function and any parameters required by the function.
Case statement
A statement that contains the name of the function and any parameters required by the function.
Immediate window
A statement that contains the name of the function and any parameters required by the function.
Procedure box
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/75
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 11: Using and Writing Visual Basic for Applications Code
1
The event name for a procedure being viewed in the VBE is indicated in the Object box. ____________________
False
2
A control is hidden in Access when the Visible property is False in a Case statement.
True
3
When using the RGB function in VBA, the color range for each value must be between the numbers of 0 through 150.
False
4
To convert a string to proper case where the first letter of every word in the string is uppercase, the StrConv function is used in VBA code.____________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
5
It is important to enter VBA code using appropriate capitalization in all statements so that the code can be read and maintained properly.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
6
Procedures included in a standard module may only be used by the form or report for which the event procedure was coded.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
7
VBA has features that are unique for each Microsoft Office program in addition to features that are common across applications.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
8
The AfterUpdate event occurs before data is changed in a control or record and the data is updated in the database.____________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
9
A control is displayed when the IsNull property is True in a procedure statement.____________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
10
The statement that indicates a Case control structure ends with End Select.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
11
Access events all have associated event properties.____________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
12
Event procedures are always Sub procedures.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
13
VBA procedures are created, modified, and displayed in the ____ window.

A)Immediate
B)Code
C)VBA
D)Query
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
14
An input mask can accomplish the same verification procedures on data that VBA can accomplish such as verifying the @ symbol in an email address.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
15
The Declarations section of a VBA module contains statements that apply to all procedures in the module.____________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
16
When a module is created it must begin with a Procedures section that applies to all procedures in the module.____________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
17
The function that accepts a single string argument as input, converts the value of the argument to lowercase letters, then returns the converted value is the LCase function. ____________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
18
An example of a conditional control structure is the Case control structure.____________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
19
The way an object responds when an event occurs is determined by an associated object property.____________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
20
It is not possible to convert an Access macro to VBA code.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
21
VBA is considered to be a(n)____ programming language because instructions are executed on objects in the database.

A)markup
B)object-oriented
C)compiler
D)assembly
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
22
To assign a purple ForeColor property to a control, the ____ function of VBA must be used.

A)vbColor
B)vbPurple
C)RGB
D)RGCYK
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
23
The type of procedure that executes instructions and accepts input values, but does not return a value and cannot be used in expressions, is a(n)____ procedure.

A)Function
B)Sub
C)Reference
D)Comment
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
24
Which of the following is a type of VBA procedure?

A)Format
B)Control
C)Reference
D)Function
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
25
Which code statement will test a control to see if the data meets specific requirements?

A)VisitDate.ForeColor=vbRed
B)ZipCode=27531
C)Select Case [State]
D)If VisitDate
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
26
When a procedure is created, the ____ determines where the procedure is available.

A)Declarations statement
B)scope
C)Procedure
D)object properties
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
27
The type of procedure that may be used by more than one object in a database is a(n)____.

A)standard module
B)function statement
C)public procedure
D)declarations module
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
28
A predefined memory location initialized to a value that does not change in VBA is called a(n)____.

A)Procedure default
B)VBA constant
C)Function constant
D)Property default
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
29
Which of the following Access events accepts new or changed data from a user entry by default.

A)OnClick
B)AfterUpdate
C)OnChange
D)OnKeyPress
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
30
Which of the following is a method used in a procedure to move the focus to a specific object or control.

A)Dim
B)SetFocus
C)Me.Undo
D)IsNull
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
31
In the Declarations statement "Option Compare Database," Database determines how the procedure will ____ the data.

A)organize
B)filter
C)run
D)sort
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
32
In a Case control structure, Case Else instructs the procedure to ____.

A)stop running
B)sort data in a new manner
C)filter data based on new requirements
D)start an alternative set of actions
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
33
To declare variables and the VBA data types associated with those variables in a procedure a(n)____ must be used.

A)Sub statement
B)Declaration statement
C)Dim statement
D)Case statement
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
34
The purpose of a VBA ____ is to respond to an event that occurs with an object or form control in an Access database.

A)statement
B)Case control
C)event
D)procedure
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
35
The Immediate window allows the developer to test or ____ individual lines of VBA code.

A)restore
B)compile
C)debug
D)append
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
36
Visual Basic for Applications is a(n)____ provided with Microsoft Office programs.

A)application
B)event builder
C)programming language
D)system program
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
37
A ____ module is automatically created when the first event procedure for a form or report is created and it is associated with that specific form or report.

A)class
B)local
C)standard
D)public
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
38
VBA code is created and modified using the ____.

A)Visual Basic Window
B)Visual Basic Editor
C)Visual Basic Design view
D)Procedure Window
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
39
VBA is considered to be what type of language?

A)rule-based programming language
B)a markup language
C)an assembly language
D)an event-driven language
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
40
Which of the following color options may be assigned to a control property as a VBA constant?

A)vbRed
B)RGB(255,0,0)
C)CMYK(0, 21, 151)
D)vbRGB(151, 12, 276)
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
41
The following code is testing a field in the associated form for specific input.  Which string is the Case structure looking for in the form?
   Select Case [Course]
   Case "CIS 101"
   lblMessage, Caption = "Prerequisite CIS 100 required"

A)Course
B)CIS 100
C)CIS 101
D)Prerequisite CIS 100 required
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
42
Which VB constant used in conjunction with the StrConv function will convert all characters of a string to upper case letters?

A)vbProperCase
B)vbLowerCase
C)vbUpperCase
D)vbAllCaps
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
43
Because Louisa's code will only be used in Access, she can use a VBA constant in the code argument to change the City field's value to proper case.  Which VBA constant should Louisa use?

A)vbUpperCase
B)vbLowerCase
C)vbChangeCase
D)vbProperCase
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
44
List four advantages of using VBA rather than macros in Access.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
45
Which code best represents the procedure Louisa has written to convert the City field values to proper case in the database?

A)Private Sub EventProcedure _ VB Constant     'Convert City to proper case     [ Field ] = VBA Function ([ Field ],   Event Procedure
End Sub
B)Private Sub Field _ EventProcedure     'Convert City to proper case     [ Field ] = VBA Function ([ Field ], VB Constant
End Sub
C)Private Sub Field _ EventProcedure     'Convert City to proper case     [ VB Constant ] = VBA Function ([ Field ], Field
End Sub
D)Private Sub VB Function _ EventProcedure     'Convert City to proper case     [ VBAFunction ] = ([ Field ], VB Constant
End Sub
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
46
A control is not displayed when the Visible property is to ____.

A)Yes
B)No
C)True
D)False
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
47
Color values for controls may be coded in several different ways.  Which type of color value represents color intensities of red, green, and blue instead of the color values ranging from 0-255?

A)RGB
B)VB constant
C)ColorIndex
D)hexadecimal
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
48
Case-Based Critical Thinking Questions
Case 11-2 The Environmental Policy Group is collecting data on weather conditions throughout the southeast U.S. The database used for data collection is being used by field technicians throughout the region.  Louisa has been asked to update the database to reduce data entry mistakes.  Louisa will create some new procedures and update others in the database.
Louisa wants to be sure that all city locations are recorded in proper case in the database.  To do this, she needs to use the ____ event procedure which will automatically change the data entered in the City field to proper case any time a value is entered or changed in the field. For instance, if the user enters san antonio in the City field, the procedure will change the data to San Antonio and store it in the database.

A)OnChange
B)OnEnter
C)AfterUpdate
D)BeforeUpdate
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
49
Case-Based Critical Thinking Questions
Case 11-1
Luca is the database administrator for a city parks and recreation department.  The department routinely uses community college interns to process applications and registration for the department's programs. It is important that the user interface minimize user input errors as much as possible.
Luca wants to be sure that a message appears to the user prompting that an email be sent to all program participants reminding them of the date the program begins when the Paid field in the form is marked paid.  What type of structure will Luca use to code an expression that tests the Paid field for an entry?

A)If structure
B)Case control structure
C)Compare control structure
D)If, then structure
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
50
In addition to the single quotation mark ('), a comment line in VBA code may begin with ____.

A)Rem
B)Comment
C)slash (/)
D)semi-colon (;)
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
51
Which VB data type stores values of True or False?

A)Decimal
B)Object
C)Variant
D)Boolean
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
52
Case-Based Critical Thinking Questions
Case 11-1
Luca is the database administrator for a city parks and recreation department.  The department routinely uses community college interns to process applications and registration for the department's programs. It is important that the user interface minimize user input errors as much as possible.
Because the event procedure that Luca is coding will only be used for the Participant Information form, the procedure is a(n)____ procedure.

A)private
B)public
C)remote
D)shared
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
53
A comment line in the Code windows is indented and appears in the color ___.

A)red
B)green
C)blue
D)black
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
54
List the five VBA naming rules that must be followed when naming VBA elements such as Sub procedures, arguments, and functions
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
55
In the following code, which field in the associated form is being used for the Case structure?
   Select Case [Course]
   Case "CIS 101"
   lblMessage, Caption = "Prerequisite CIS 100 required"

A)CIS 101
B)Course
C)CIS 100
D)Case CIS 101
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
56
Case-Based Critical Thinking Questions
Case 11-1
Luca is the database administrator for a city parks and recreation department.  The department routinely uses community college interns to process applications and registration for the department's programs. It is important that the user interface minimize user input errors as much as possible.
Luca needs to use a VBA function in his code to return a value of True if the Paid field has no data or a value of False if the Paid field is not empty. Which VBA function should Luca use?

A)IsPaid
B)IsNum
C)IsNull
D)IsBound
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
57
The Visual Basic window is accessed using the ____ group from the Create tab.

A)Forms
B)Macros & Code
C)Templates
D)VBA
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
58
All event procedures in a class module are a(n)____ procedures which means they may only be used for the form or report for which the class module was created.

A)public
B)local
C)Case
D)Sub
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
59
Case-Based Critical Thinking Questions
Case 11-1
Luca is the database administrator for a city parks and recreation department.  The department routinely uses community college interns to process applications and registration for the department's programs. It is important that the user interface minimize user input errors as much as possible.
After creating the message control using VBA, which property of the control must be coded to display the message "Email the participant with the start date of the program"?

A)Caption
B)Text
C)Special Effect
D)Statement
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
60
If the Paid field is marked as paid in the Participant Information form, Luca wants the following message to appear on the screen "Email the participant with the start date of the program."  Which type of VBA control should Luca use in the procedure to create the message?

A)combo box
B)radio button
C)message
D)label
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
61
Match between columns
D isplays the current object type the procedure acts on.
coding
D isplays the current object type the procedure acts on.
Sub statement
D isplays the current object type the procedure acts on.
logic error
D isplays the current object type the procedure acts on.
RGB
D isplays the current object type the procedure acts on.
function call
D isplays the current object type the procedure acts on.
Current
D isplays the current object type the procedure acts on.
Assignment statement
D isplays the current object type the procedure acts on.
Visual Basic window
D isplays the current object type the procedure acts on.
Load
D isplays the current object type the procedure acts on.
bas
D isplays the current object type the procedure acts on.
Object box
D isplays the current object type the procedure acts on.
Case statement
D isplays the current object type the procedure acts on.
Immediate window
D isplays the current object type the procedure acts on.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
62
Match between columns
D isplays the event name for the current event procedure
coding
D isplays the event name for the current event procedure
Sub statement
D isplays the event name for the current event procedure
logic error
D isplays the event name for the current event procedure
RGB
D isplays the event name for the current event procedure
function call
D isplays the event name for the current event procedure
Current
D isplays the event name for the current event procedure
Assignment statement
D isplays the event name for the current event procedure
Visual Basic window
D isplays the event name for the current event procedure
Load
D isplays the event name for the current event procedure
bas
D isplays the event name for the current event procedure
Object box
D isplays the event name for the current event procedure
Case statement
D isplays the event name for the current event procedure
Immediate window
D isplays the event name for the current event procedure
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
63
Match between columns
D esignates the start of an alternative set of actions
coding
D esignates the start of an alternative set of actions
Sub statement
D esignates the start of an alternative set of actions
logic error
D esignates the start of an alternative set of actions
RGB
D esignates the start of an alternative set of actions
function call
D esignates the start of an alternative set of actions
Current
D esignates the start of an alternative set of actions
Assignment statement
D esignates the start of an alternative set of actions
Visual Basic window
D esignates the start of an alternative set of actions
Load
D esignates the start of an alternative set of actions
bas
D esignates the start of an alternative set of actions
Object box
D esignates the start of an alternative set of actions
Case statement
D esignates the start of an alternative set of actions
Immediate window
D esignates the start of an alternative set of actions
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
64
Match between columns
T ests VBA procedures without changing any data in the database
coding
T ests VBA procedures without changing any data in the database
Sub statement
T ests VBA procedures without changing any data in the database
logic error
T ests VBA procedures without changing any data in the database
RGB
T ests VBA procedures without changing any data in the database
function call
T ests VBA procedures without changing any data in the database
Current
T ests VBA procedures without changing any data in the database
Assignment statement
T ests VBA procedures without changing any data in the database
Visual Basic window
T ests VBA procedures without changing any data in the database
Load
T ests VBA procedures without changing any data in the database
bas
T ests VBA procedures without changing any data in the database
Object box
T ests VBA procedures without changing any data in the database
Case statement
T ests VBA procedures without changing any data in the database
Immediate window
T ests VBA procedures without changing any data in the database
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
65
Match between columns
A statement that assigns the value of an expression to a field, control, or property.
coding
A statement that assigns the value of an expression to a field, control, or property.
Sub statement
A statement that assigns the value of an expression to a field, control, or property.
logic error
A statement that assigns the value of an expression to a field, control, or property.
RGB
A statement that assigns the value of an expression to a field, control, or property.
function call
A statement that assigns the value of an expression to a field, control, or property.
Current
A statement that assigns the value of an expression to a field, control, or property.
Assignment statement
A statement that assigns the value of an expression to a field, control, or property.
Visual Basic window
A statement that assigns the value of an expression to a field, control, or property.
Load
A statement that assigns the value of an expression to a field, control, or property.
bas
A statement that assigns the value of an expression to a field, control, or property.
Object box
A statement that assigns the value of an expression to a field, control, or property.
Case statement
A statement that assigns the value of an expression to a field, control, or property.
Immediate window
A statement that assigns the value of an expression to a field, control, or property.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
66
Why is it recommended that procedures be compiled after they are first created or when changes are made to the procedure code?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
67
Match between columns
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
coding
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Sub statement
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
logic error
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
RGB
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
function call
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Current
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Assignment statement
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Visual Basic window
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Load
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
bas
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Object box
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Case statement
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Immediate window
Occurs when the focus moves to a record, making it the current record, or when a form is refreshed.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
68
Match between columns
The statement that marks the start of a new Sub procedure.
coding
The statement that marks the start of a new Sub procedure.
Sub statement
The statement that marks the start of a new Sub procedure.
logic error
The statement that marks the start of a new Sub procedure.
RGB
The statement that marks the start of a new Sub procedure.
function call
The statement that marks the start of a new Sub procedure.
Current
The statement that marks the start of a new Sub procedure.
Assignment statement
The statement that marks the start of a new Sub procedure.
Visual Basic window
The statement that marks the start of a new Sub procedure.
Load
The statement that marks the start of a new Sub procedure.
bas
The statement that marks the start of a new Sub procedure.
Object box
The statement that marks the start of a new Sub procedure.
Case statement
The statement that marks the start of a new Sub procedure.
Immediate window
The statement that marks the start of a new Sub procedure.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
69
Match between columns
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
coding
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Sub statement
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
logic error
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
RGB
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
function call
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Current
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Assignment statement
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Visual Basic window
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Load
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
bas
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Object box
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Case statement
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Immediate window
A set of values for the colors red, green, and blue ranging from 0 to 255 which are used in a specific VB function.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
70
Match between columns
An error that occurs when a procedure produces incorrect results.
coding
An error that occurs when a procedure produces incorrect results.
Sub statement
An error that occurs when a procedure produces incorrect results.
logic error
An error that occurs when a procedure produces incorrect results.
RGB
An error that occurs when a procedure produces incorrect results.
function call
An error that occurs when a procedure produces incorrect results.
Current
An error that occurs when a procedure produces incorrect results.
Assignment statement
An error that occurs when a procedure produces incorrect results.
Visual Basic window
An error that occurs when a procedure produces incorrect results.
Load
An error that occurs when a procedure produces incorrect results.
bas
An error that occurs when a procedure produces incorrect results.
Object box
An error that occurs when a procedure produces incorrect results.
Case statement
An error that occurs when a procedure produces incorrect results.
Immediate window
An error that occurs when a procedure produces incorrect results.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
71
Match between columns
The Access event that occurs when a form is opened and the records are displayed.
coding
The Access event that occurs when a form is opened and the records are displayed.
Sub statement
The Access event that occurs when a form is opened and the records are displayed.
logic error
The Access event that occurs when a form is opened and the records are displayed.
RGB
The Access event that occurs when a form is opened and the records are displayed.
function call
The Access event that occurs when a form is opened and the records are displayed.
Current
The Access event that occurs when a form is opened and the records are displayed.
Assignment statement
The Access event that occurs when a form is opened and the records are displayed.
Visual Basic window
The Access event that occurs when a form is opened and the records are displayed.
Load
The Access event that occurs when a form is opened and the records are displayed.
bas
The Access event that occurs when a form is opened and the records are displayed.
Object box
The Access event that occurs when a form is opened and the records are displayed.
Case statement
The Access event that occurs when a form is opened and the records are displayed.
Immediate window
The Access event that occurs when a form is opened and the records are displayed.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
72
Match between columns
The process of writing instructions in a programming language.
RGB
The process of writing instructions in a programming language.
coding
The process of writing instructions in a programming language.
Sub statement
The process of writing instructions in a programming language.
logic error
The process of writing instructions in a programming language.
function call
The process of writing instructions in a programming language.
Current
The process of writing instructions in a programming language.
Assignment statement
The process of writing instructions in a programming language.
Visual Basic window
The process of writing instructions in a programming language.
Load
The process of writing instructions in a programming language.
bas
The process of writing instructions in a programming language.
Object box
The process of writing instructions in a programming language.
Case statement
The process of writing instructions in a programming language.
Immediate window
The process of writing instructions in a programming language.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
73
Match between columns
The standard prefix for modules in Access.
coding
The standard prefix for modules in Access.
Sub statement
The standard prefix for modules in Access.
logic error
The standard prefix for modules in Access.
RGB
The standard prefix for modules in Access.
function call
The standard prefix for modules in Access.
Current
The standard prefix for modules in Access.
Assignment statement
The standard prefix for modules in Access.
Visual Basic window
The standard prefix for modules in Access.
Load
The standard prefix for modules in Access.
bas
The standard prefix for modules in Access.
Object box
The standard prefix for modules in Access.
Case statement
The standard prefix for modules in Access.
Immediate window
The standard prefix for modules in Access.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
74
Match between columns
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
coding
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Sub statement
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
logic error
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
RGB
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
function call
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Current
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Assignment statement
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Visual Basic window
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Load
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
bas
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Object box
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Case statement
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Immediate window
The program window that opens when VB is chosen from the Macros & Code group on the Create tab.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
75
Match between columns
A statement that contains the name of the function and any parameters required by the function.
coding
A statement that contains the name of the function and any parameters required by the function.
Sub statement
A statement that contains the name of the function and any parameters required by the function.
logic error
A statement that contains the name of the function and any parameters required by the function.
RGB
A statement that contains the name of the function and any parameters required by the function.
function call
A statement that contains the name of the function and any parameters required by the function.
Current
A statement that contains the name of the function and any parameters required by the function.
Assignment statement
A statement that contains the name of the function and any parameters required by the function.
Visual Basic window
A statement that contains the name of the function and any parameters required by the function.
Load
A statement that contains the name of the function and any parameters required by the function.
bas
A statement that contains the name of the function and any parameters required by the function.
Object box
A statement that contains the name of the function and any parameters required by the function.
Case statement
A statement that contains the name of the function and any parameters required by the function.
Immediate window
A statement that contains the name of the function and any parameters required by the function.
Procedure box
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.