G
Guest
Hi. I'm very familiar with VBA as it opplies to Excel... Access? Not so much.
I have some stuff that I'm going to need to do in Excel, but will need to
run a few things through Access along the way.
Here's my start:
Dim objAcc As Object
Set objAcc = CreateObject("Access.Application")
objAcc.Visible = 1
to get Access open and running.
From there, how do I create a new database? I know how to open an existing
database with the OpenCurrentDatabase method, but how do I create a new one?
Everything I've tried throws object errors.
Thanks.
I have some stuff that I'm going to need to do in Excel, but will need to
run a few things through Access along the way.
Here's my start:
Dim objAcc As Object
Set objAcc = CreateObject("Access.Application")
objAcc.Visible = 1
to get Access open and running.
From there, how do I create a new database? I know how to open an existing
database with the OpenCurrentDatabase method, but how do I create a new one?
Everything I've tried throws object errors.
Thanks.