| Back to Questions Page |
| |
| Question |
What is ADO? What are its objects ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | ActiveX Data Object. ADO can access data from both flat
files as well as the databases. I.e., It is encapsulation
of DAO, RDO, and OLE that is why we call it as OLE-DB
Technology.
Objects are Connection, Record Set, Command, Parameter,
field, Error, Property.
 |
| Guest |
| |
| |
| Question |
What is difference between datagrid and flexgrid? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ InfoWorld |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Datagrid ? Editable.
Flexigrid ? Non-Editable. (Generally used for Read only
purpose.)  |
| Guest |
| |
| |
| Question |
How to check the condition in Msgbox? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | For Ex:
If(Msgbox("Do you want to delete this Record",VbYesNo)
=VbYes)Then End if
 |
| Guest |
| |
| |
|
|
| |
| Answer | for example
if msgbox("Are You Sure",vbyesno)=vbyes then
con..
else
con..
endif  |
| Karan Munjal |
| |
| |
| Answer | if msgbox("Are You Sure",vbyesno)=vbyes then
Condition statement
else
Condition statement
endif  |
| Kamlesh Gupta |
| |
| |
| Question |
How to change the Mouse Pointer? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Screen.MousePointer = VBHourGlass/VBNormal.
 |
| Guest |
| |
| |
| Answer | If u want to change the mouse pointer when the form is
running then in the form load event write this coading part
Private Sub Form_Load()
Form1.MousePointer = 2
End Sub
for the mouse pointer to be a cross mark we can change
these values from 0 to 6 for different styles  |
| Naina |
| |
| |
| Question |
Can We create CGI scripts in VB? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | yes  |
| William |
| |
| |
| Question |
What is the Dll required for running the VB? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Vbrun300.dll
 |
| Guest |
| |
| |
| Question |
What are the different types of Dialog Box? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ Apollo |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Predefined, Custom, User Defined.
 |
| Guest |
| |
| |
| Question |
What are the Style properties of List Box? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Simple ?Single Select , Extended. ? Multiple Select.  |
| Guest |
| |
| |
| Answer | Standard & Checked  |
| Lata Mehra |
| |
| |
| Question |
What are the Style Properties of Combo Box? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Simple, Dropdown list ? We can type and select.
Dropdown Combo ? Only Drop Down.
 |
| Guest |
| |
| |
| Question |
What is Implicit? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Instance of specific copy of a class with its own settings
for the properties defined in that class.  |
| Guest |
| |
| |
| Question |
What is Static Variable? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Its Scope will be available through out the life time.  |
| Guest |
| |
| |
| Answer | Static variables retain values for the subsequent calls to
the procedure  |
| Hema |
| |
| |
| Answer | Static that means can not change. Variable that can not
allow to change value along a life of the project.  |
| Jalpa |
| |
| |
| Question |
What is the diff between the Create Object and Get object? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Create Object - To create an instance of an object.
Get Object ? To get the reference to an existing object.
 |
| Guest |
| |
| |
|
| |
|
Back to Questions Page |