If that is not acceptable, you have a few options.
1. Re-write the spec.
2. Manipulate the hidden system tables.
Tools, Options, View
Hidden Objects
System Objects
This is undocumeted/unsupported.
The table you want is: MSysIMEXColumns.
But if you edit the table you find it is locked!
A little known trick is to write a query against the table.
The query is updateable!
SELECT MSysIMEXColumns.Attributes, MSysIMEXColumns.DataType,
MSysIMEXColumns.FieldName, MSysIMEXColumns.IndexType,
MSysIMEXColumns.SkipColumn, MSysIMEXColumns.SpecID, MSysIMEXColumns.Start,
MSysIMEXColumns.Width
FROM MSysIMEXColumns;
--
Joe Fallon
Access MVP
"Carmalita" <csgr...@aol.com> wrote in message
news:6e6601c2bd66$f4ebe790$89f82ecf@TK2MSFTNGXA01...
You can cut all rows from the spec below where you want to add the new row
to the clipboard, add your new row(s) and then paste the clipped rows back
underneath the new ones.
"Rick Brandt" <rvtjb...@sbcglobal.net> wrote in message
news:b0cm2i$nv6m2$1...@ID-98015.news.dfncis.de...