Please enter your details here.
To break up long lines of code, the line continuation character in VBA is
Which property determines whether a control is displayed to the user?
___________ indicates whether a particular condition is on or off
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
When the form is first referenced in any manner by program,the triggered event is….
What data type can hold any type of data?
Why Macro is used
Which of the following statements is not true about user-defined functions?
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
To close a form named Form1, you can use:
Which event, runs macros automatically in excel VBA while opening Workbook
The _______________ statement first executes the statements and then tests the condition after each execution
Suppose you need to develop an online poll of user responses to a question. For convenience, you would like the most popular options to be displayed in a list for the user to quickly select an option and submit their answer. However, you would also like them to be able to use the same control to allow them to specify an write-in value of their own. Which control is most appropriate for this application?
What is the color of comments?
The _______________ control used to insert image to the form
Do…Loop... Until code block is always executed once.
To load graphics on a control at runtime, we have to use the function….
A Combo box is loaded in the From_Initialize event with:
Combo1.AddItem “Red”
Combo1.AddItem “Blue”
Combo1.AddItem “Green”
To force all variables is a VBA project to be declared, which must be stated in a module?
Which of the following is default in VBA for data passing?
The Properties window plays an important role in the development of Visual Basic Applications. It is mainly used
Which character in VBA, indicates start of a comment
An array that maintains multiple sets of information referenced by more than one index is called ________________
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)
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
Study the screenshot below. What is the appropriate action to take when a workbook displays this message (Security Warning Macros have been disabled)?
A ____________ is a predefined VB procedure that you can call upon when needed.
___________ control is used to provide an identifiable grouping for other controls
Which of the following statement is not a looping statement in VBA?
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?