HI,
the only working way i know is using DAO!
dbengine = CreateOLEObject("DAO.DbEngine.36");
db = dbengine.OpenDatabase(‘db\extract.mdb‘);
db.TableDefs(tbl).Fields(clo).AllowZeroLength = True;
db.Close;
so use this for late-binding or import the type-lib.
As far as I know ther is no DDL Code nor a working ADOX function.
greetings
Hinnack