Please enter your details here.
When the form is first referenced in any manner by program,the triggered event is….
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
Do…Loop... Until code block is always executed once.
A single Case statement can contain multiple values
A Combo box is loaded in the From_Initialize event with:
Combo1.AddItem “Red”
Combo1.AddItem “Blue”
Combo1.AddItem “Green”
Which of the following statements is not true about user-defined functions?
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?
___________ indicates whether a particular condition is on or off
What property of controls tells the order they receive the focus when the tab key is pressed during run time? it.
The value returned by InputBox is a string
___________ statement enables us to trap runtime error.
What will be the output of the following code?
Sub LoopExample()
Dim StartNumber As Integer
Dim EndNumber As Integer
Dim Answer As Integer
Answer = 5
EndNumber = 5
For StartNumber = 1 To EndNumber
Answer = Answer + EndNumber
Next StartNumber
MsgBox Answer
End Sub
This control is used for titles/captions
Why Macro is used
An array that maintains multiple sets of information referenced by more than one index is called ________________
A ____________ is a predefined VB procedure that you can call upon when needed.
What do you need to select to set the developer mode?
Which Case clause will be true whenever the value of the selector in a Select Case block is between 1 and 5 or is 8?
Suppose you are designing an application for admissions to a college or university, and you need to decide how to provide the user with a selection of racial backgrounds. Which control would be most appropriate?
__________ are the attributes of an object that control the object's appearance and behavior.
Which of the following arithmetic operations has the highest level of precedence?
What data type can hold any type of data?
Which windows displays a list of all forms and modules making up your application.
Which event, runs macros automatically in excel VBA while opening Workbook
Given that x = 7, y = 2, and z = 4, the following If block will display “TRUE”. If (x > y) Or (y > z) Then txtBox.Text = “TRUE” End If
_______________ is the function to compare 2 strings.
The _______________ statement first executes the statements and then tests the condition after each execution
Which part of VBA window, refers to area where code is written.
To load graphics on a control at runtime, we have to use the function….
Private Procedure can be called from anywhere in the project