dear gurus,

i'm adding a column to an access database using this code:
VB Code:
  1. Conn.Open StrConnect
  2.     'add fields
  3.     SqlExec = "ALTER TABLE newsletters_entries ADD COLUMN Company VARCHAR(200);"
  4.     Conn.Execute SqlExec
  5.     'close
  6.     Conn.Close
and that works fine. however, this add this new column at the END of the database. is there any way to actually add it into a specified place?

thank you,

wc.