How do I change a field name in a table? I have tried the following (and several derivations of it) with no luck:
Dim db As DAO.Database
Dim rst As DAO.Recordset
Dim field As DAO.field
Set db As CurrentDb
Set rst = db.OpenRecordset(TblName, dbOpenTable)
Set field = rst.Fields("OldName")
Set...