realstandman
IS-IT--Management
Using Access 2000 I currently have a command button on a form that has the following code
DoCmd.RunCommand acCmdImport
Then I have another command button that renames the imported table to a table I use in various queries.
DoCmd.Rename "TEXN TOP TEN DATA", acTable, Text24
The Text24 is a box for the user to enter the imported table name and the button renames it to TEXN TOP TEN DATA.
What can I do with a command button to import a dbf file to an existing table (TEXN TOP TEN DATA)?
STANDMAN
DoCmd.RunCommand acCmdImport
Then I have another command button that renames the imported table to a table I use in various queries.
DoCmd.Rename "TEXN TOP TEN DATA", acTable, Text24
The Text24 is a box for the user to enter the imported table name and the button renames it to TEXN TOP TEN DATA.
What can I do with a command button to import a dbf file to an existing table (TEXN TOP TEN DATA)?
STANDMAN