J
johnboy7676
(Access 2003) I have code that works fine, but it makes the table in
the front end. I need to: check path to back end (in case it's
changed), either make the table in FE then move it to back end or just
make it in back end to start with, then make a link in the FE.
This is what I have now, on a form, which works fine to make a table
in the FE:
Dim strSQL As String
Dim strTableName As String
strTableName = "tblMasterFile" & Me.txtArchiveYear
strSQL = "SELECT tblMasterFile.* INTO " & strTableName & " FROM
tblMasterFile;"
DoCmd.RunSQL strSQL
Any pointers?
Thanks, John
the front end. I need to: check path to back end (in case it's
changed), either make the table in FE then move it to back end or just
make it in back end to start with, then make a link in the FE.
This is what I have now, on a form, which works fine to make a table
in the FE:
Dim strSQL As String
Dim strTableName As String
strTableName = "tblMasterFile" & Me.txtArchiveYear
strSQL = "SELECT tblMasterFile.* INTO " & strTableName & " FROM
tblMasterFile;"
DoCmd.RunSQL strSQL
Any pointers?
Thanks, John