-
-
What is Inprocess and Out of Process?
Inprocess – It will run with in the memory. ( Local Machine). Out of Process – It will run out of the memory Normally in the server side.
-
What are properties available in Clip Board?
No Properties Available. Only the methods they are SetText, GetText, Setdata(), Getformat(), Clear.
-
What is Dll?
Libraries of procedure external to the application but can be called from the application.
-
-
Why we use Treeview Control?
To list the hierarchical list of the node objects. Such of files and Directories.
-
What is the diff between the Create Object and Get object?
Create Object - To create an instance of an object. Get Object – To get the reference to an existing object.
-
What is Static Variable?
Its Scope will be available through out the life time.
-
Private Dim x as integer. Valid ?
Private cannot be used in front of DIM.
-
What are the scopes of the class?
Public, private, Friend
-
-
In project properties if we set Unattended what is it mean?
This cannot have user interface. This can be used for the COM creation.
-
What are the Style Properties of Combo Box?
Simple, Dropdown list – We can type and select. Dropdown Combo – Only Drop Down.
-
What are the Style properties of List Box?
Simple –Single Select , Extended. – Multiple Select.
-
What are the different types of Dialog Box?
Predefined, Custom, User Defined.
-
What is Parser Bug?
It is difficult to use database objects declared in a module from within a form.
-
What is the Dll required for running the VB?
Vbrun300.dll
-
-
How to check the condition in Msgbox?
If(Msgbox("Do you want to delete this Record",VbYesNo)=VbYes)Then End if
-
What is difference between datagrid and flexgrid?
Datagrid – Editable. Flexigrid – Non-Editable. (Generally used for Read only purpose.)
Visual Basic Interview Questions
Ans