00KobeBrian said:
How can I issue an "alter table" command in a code in Access 97 ?
THanks.
You can execute it like any other SQL statement:
DoCmd.RunSQL "ALTER TABLE ..."
or
CurrentDb.Execute "ALTER TABLE ..."
Or you could manipulate DAO objects to modify the table, but that's more
complicated.