Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. seancastor

    How to add a new fields in table by using recordset (VBA)

    Use TableDefs instead of Recordset. Here is an example: Dim tdf as TableDef, fld as Field Set tdf = db.TableDefs("Table1") Set fld = tdf.CreateField("FieldName",fieldsize) - the field size is going to be something like dbDouble, dbDate, dbText, etc.) With tdf.Fields...

Part and Inventory Search

Back
Top