Visual Basic (VB) Question: Download Visual Basic (VB) PDF

What are the different ways to Declare and Instantiate an object in Visual Basic 6?

Tweet Share WhatsApp

Answer:

Dim obj as OBJ.CLASS with eitherSet obj = New OBJ.CLASS orSet obj = CreateObject(OBJ.CLASS?) orSet obj = GetObject( , OBJ.CLASS?)orDim obj as New OBJ.CLASS

Download Visual Basic (VB) PDF Read All 102 Visual Basic (VB) Questions
Previous QuestionNext Question
What does Option Explicit refer to?Name the four different cursor types in ADO and describe them briefly.