Connecting with Microsoft Access with ADODB.Connection : CurrentProject Connection « Access « VBA / Excel / Access / Word






Connecting with Microsoft Access with ADODB.Connection

 
Sub openForm()
   Dim con As ADODB.Connection
   Set con = CurrentProject.Connection
End Sub

 








Related examples in the same category

1.Establishing a Connection to the Current Access Database