Im using the cose below to add a new field to a table:
Public Sub AddFields()
Dim Dbs As Database
Set Dbs = CurrentDb
Dbs.Execute ("ALTER TABLE TEMP ADD COLUMN TESTER TEXT(20);")
End Sub
How can I set the new field to allow zero length?
Its default seems to be set to "NO"
Public Sub AddFields()
Dim Dbs As Database
Set Dbs = CurrentDb
Dbs.Execute ("ALTER TABLE TEMP ADD COLUMN TESTER TEXT(20);")
End Sub
How can I set the new field to allow zero length?
Its default seems to be set to "NO"