Please enter your details here.
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?
Private Procedure can be called from anywhere in the project
Why Macro is used
___________ statement enables us to trap runtime error.
What is the color of comments?
The _______________ control used to insert image to the form
Which property determines whether a control is displayed to the user?
An object is composed of :
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?
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
32-bit Software/Applications can be installed on:
What data type can hold any type of data?
Which part of VBA window, refers to area where code is written.
___________ control is used to provide an identifiable grouping for other controls
To break up long lines of code, the line continuation character in VBA is
A Combo box is loaded in the From_Initialize event with:
Combo1.AddItem “Red”
Combo1.AddItem “Blue”
Combo1.AddItem “Green”
A ______________ returns a value to the part of the program that called it.
What will the value of ThisVar be after the following lines of code execute?
Dim ThisVar As String Dim MyName = "John" ThisVar = MyName & "John"
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
An array that maintains multiple sets of information referenced by more than one index is called ________________
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?
Which event, runs macros automatically in excel VBA while opening Workbook
The Properties window plays an important role in the development of Visual Basic Applications. It is mainly used
Which windows displays a list of all forms and modules making up your application.
_______________ is the function to compare 2 strings.
Suppose the variable myName is declared in a Dim statement in two different Sub procedures. Which statement is true?
What do you need to select to set the developer mode?
What value is stored in a variable of type single if we try to assign the variable to the value 634?
A single Case statement can contain multiple values
To close a form named Form1, you can use: