i am trying to create a button that will open a database from a vb6 system. I have got so far but i dont know what is meant to go instead of Database
Option Explicit
Dim ACC As Access.Application
Private Sub btnDatabase_Click()
Set ACC = New Access.Application
ACC.Database.Open ""
ACC.Visible = True
End Sub
would any1 be able to help?
thnx andy