Please enter your details here.
To load graphics on a control at runtime, we have to use the function….
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?
When the form is first referenced in any manner by program,the triggered event is….
32-bit Software/Applications can be installed on:
___________ statement enables us to trap runtime error.
VBA Code run by
There can be different data types of an element in an array
A loop that does not have the way of stopping is called a ___________
Do…Loop... Until code block is always executed once.
A single Case statement can contain multiple values
What do you need to select to set the developer mode?
Which part of VBA window, refers to area where code is written.
Why Macro is used
The Properties window plays an important role in the development of Visual Basic Applications. It is mainly used
Which of the following statement is not a looping statement in VBA?
An array that maintains multiple sets of information referenced by more than one index is called ________________
Which is the conversion for the following If...Then...ElseIf statement to a Select...Case statement?
If intValue > 0 And intValue <= 9 Then
discount = .10
Else If intValue >9 And intValue <=20
discount = .15
Else
discount = .20
When the block of code finishes the execution, what will the final value of X be?
Public Sub Example ()
Dim Y As Integer
Dim X As Integer
X = 0
Y = 10
For Count = Y To 1 Step -2
X = X + Y
If Y = (Y = 1) Then
Exit For
End If
Next Count
X = X / X
MsgBox X
End Sub
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
Which windows displays a list of all forms and modules making up your application.
Basic Excel Object model as follows:
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
_______________ is the function to compare 2 strings.
__________ are the attributes of an object that control the object's appearance and behavior.
Which property determines whether a control is displayed to the user?
What data type can hold any type of data?
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?
Private Procedure can be called from anywhere in the project
Which event, runs macros automatically in excel VBA while opening Workbook
What property of controls tells the order they receive the focus when the tab key is pressed during run time? it.