Please enter your details here.
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
__________ are the attributes of an object that control the object's appearance and behavior.
When the form is first referenced in any manner by program,the triggered event is….
Which windows displays a list of all forms and modules making up your application.
To close a form named Form1, you can use:
This control is used for titles/captions
Why Macro is used
There can be different data types of an element in an array
___________ statement enables us to trap runtime error.
The Properties window plays an important role in the development of Visual Basic Applications. It is mainly used
The _______________ control used to insert image to the form
Private Procedure can be called from anywhere in the project
Which of the following is default in VBA for data passing?
Which of the following statements is not true about user-defined functions?
___________ indicates whether a particular condition is on or off
To load graphics on a control at runtime, we have to use the function….
Which event, runs macros automatically in excel VBA while opening Workbook
Which property determines whether a control is displayed to the user?
To break up long lines of code, the line continuation character in VBA is
32-bit Software/Applications can be installed on:
Do…Loop... Until code block is always executed once.
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)
_______________ is the function to compare 2 strings.
What value is stored in a variable of type single if we try to assign the variable to the value 634?
Which of the following arithmetic operations has the highest level of precedence?
Which part of VBA window, refers to area where code is written.
A ______________ returns a value to the part of the program that called it.
A ____________ is a predefined VB procedure that you can call upon when needed.
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
What property of controls tells the order they receive the focus when the tab key is pressed during run time? it.