Visual Basic (VB)

  Home  Computer Programming  Visual Basic (VB)


“Visual Basic Interview Questions and Answers will guide you that Visual Basic (VB) is the third-generation event-driven programming language and integrated development environment (IDE) from Microsoft for its COM programming model. By browsing our Visual Basic Interview Questions and Answers you will learn that VB is also considered a relatively easy to learn and use programming language. This VB interview questions and answers guide will make Visual Basic more easy to learn for every one.”



102 Visual Basic (VB) Questions And Answers

83⟩ What are types of binding?

Assigning variable with defined memory space.

Late Binding - Memory size is allotted in later stage.

Ex:- Dim x as object

Early Binding - Memory size is allotted while declaring itself. New Key word is important.

Ex:- Dim x as New Object

 201 views

86⟩ Different type of Passing Value?

By value, By ref, Optional, Param Array. Note:- Optional keyword cannot be used while declaring arguments for a function using param array.

 200 views

90⟩ What is Dataware Control?

Any control bound to Data Control.

Ex:- Textbox, Check Box, Picture Box, Image Control, Label, List box, Combo Box, DB Combo,

 205 views

94⟩ What is ADO? What are its objects ?

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.

 222 views

98⟩ Calling Stored Procedures in VB?

1. Calling Simply the Procedure with out Arguments "Call ProcedureName}"

2. If it is with Arguments Means then

Declare the Query Def qy

Set Qy as New Query def

Qy.SQL = "{Call ProcedureName(?

 195 views