Yes, it is possible. Just use a Data Definition Query
- Create a new query, but don't add any tables.
- On the Menu Bar, select Query | SQL Specific | Data Definition
- Write your query to modify the table, using the ALTER TABLE syntax.
For example: "ALTER TABLE Tablename ADD COLUMN NewField TEXT(25);"
For more information about writing an ALTER TABLE query, search Help.
You could also use DAO or ADO to do this programmatically:
ACC2000: How to Use DAO to Programmatically Add an AutoNumber Field to a Table
http://support.microsoft.com/default.aspx?scid=kb;en-us;210405
If you do some digging in the MS Knowledge Base or in other sources you
should be able to find some examples for doing this in ADO.
Hope that helps!
DBS (David Staas)