I have the following code on a Form button.
I want to delete the table tbl_RPS_Owner_WSC_01_Input in Build_Be.mdb BE
Then copy table tbl_RPS_Owner_WSC_01_Input_AN_0 in Build.mdb FE to
tbl_RPS_Owner_WSC_01_Input in Build_Be.mdb BE
‘ Drop Table
DoCmd.DeleteObject acTable, “tbl_RPS_Owner_WSC_01_Input”
‘ Copy tbl_RPS_Owner_WSC_01_Input_AN_0 to tbl_RPS_Owner_WSC_01_Input
DoCmd.CopyObject “F:AppsAccess2kBuildLewBuild_Be.mdb”, _
“tbl_RPS_Owner_WSC_01_Input”, _
acTable, _
“tbl_RPS_Owner_WSC_01_Input_AN_0”
Iโm getting message that it canโt find tbl_RPS_Owner_WSC_01_Input
The whole purpose is to initialize a empty table tbl_RPS_Owner_WSC_01_Input in Build_Be.mdb with autonumber reset
Thakns, John