Please enter your details here.
What do you need to select to set the developer mode?
_______________ is the function to compare 2 strings.
Which event, runs macros automatically in excel VBA while opening Workbook
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
Private Procedure can be called from anywhere in the project
When the form is first referenced in any manner by program,the triggered event is….
What value is stored in a variable of type single if we try to assign the variable to the value 634?
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?
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?
Basic Excel Object model as follows:
A loop that does not have the way of stopping is called a ___________
The _______________ statement first executes the statements and then tests the condition after each execution
What property of controls tells the order they receive the focus when the tab key is pressed during run time? it.
___________ control is used to provide an identifiable grouping for other controls
___________ function is used to return a copy of a string without leading spaces.
To close a form named Form1, you can use:
To load graphics on a control at runtime, we have to use the function….
Which of the following statements is not true about user-defined functions?
A ____________ is a predefined VB procedure that you can call upon when needed.
A single Case statement can contain multiple values
Which property determines whether a control is displayed to the user?
Which of the following statement is not a looping statement in VBA?
An object is composed of :
Suppose the variable myName is declared in a Dim statement in two different Sub procedures. Which statement is true?
__________ are the attributes of an object that control the object's appearance and behavior.
What will the value of ThisVar be after the following lines of code execute?
Dim ThisVar As String Dim MyName = "John" ThisVar = MyName & "John"
This control is used for titles/captions
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)
The _______________ control used to insert image to the form
Which windows displays a list of all forms and modules making up your application.