🎴 Flashcard Mode

Programming Languages Fundamentals Quiz

Card1 / 20
Mastered0
Review0
QuestionClick to flip

Which of these is used to open an database?

AnswerClick to flip back
A
Set dbMyDB = OpenDatabase("MyDatabase.mdb")
💡 Explanation:

To open a database in VB, you need to use Set dbMyDB = OpenDatabase("MyDatabase.mdb") with both the Set statement and the database path parameter. The Set statement is required for object variables.

Change Mode