Public Sub OpenAccess()
'Open ACCESS, start procedure and close this workbook
Dim strPath As String, objAccess As New Access.Application
strPath = "N:\US\US Client Relationship & Business Development\Client Reporting\Private\New Client Reporting\Client Service\Sandra\PROJECTS\JerrysProject\"
Set objAccess = CreateObject("Access.Application")
objAccess.Visible = True
objAccess.OpenCurrentDatabase strPath & "PortChar.mdb"
End Sub
|