Hi everyone,
I noticed that when creating a new table from a module using ADOX, the "Required" property for every field ("column" to ADO) in the table is automatically set to Yes.
Is there a way to change this property to No/False from the create table sub?
Thanks,
Vie
I noticed that when creating a new table from a module using ADOX, the "Required" property for every field ("column" to ADO) in the table is automatically set to Yes.
Is there a way to change this property to No/False from the create table sub?
Code:
With tblApartmentsTest.Columns("ProjectID")
.Properties("Required") = False
End With
Thanks,
Vie