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

62⟩ What is the return type of Instr and Strcmp?

Instr integer (Numeric position)

Strcmp - integer ( if both the string are equal they result = 0)

Strcmp (Str1, Str2, Comparetype)

Comparing mode = 0 Binary Comparing

1 Textual Comparing

 208 views

63⟩ What is Visual Basic Implicit?

Instance of specific copy of a class with its own settings for the properties defined in that class.

Note: The implicitly defined variable is never equal to nothing.

 181 views

79⟩ How to trap Data Base Error?

Dim x as RDOError

X(0).Des

X(1).Number

Setting the Cursors.

Default Cursor 0

ODBC Cursor (Client side) 1

ServerSide Cursors (More Network traffic) - 2

 219 views