Dim tdf As TableDef
Dim db As Database
Set db = CurrentDb
For Each tdf In db.TableDefs
If tdf.Name Like "MSys*" Then
' Dont Change System tables
Else
For Each fld In tdf.Fields
fld.Name = FunctionConvertToUpperCase(fld.Name)
Next fld
tdf.Name = FunctionConvertToUpperCase(tdf.Name)
End If
Next tdf
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.