MangroBongacello
Programmer
Hi,
how do I set the required property of a text field in Access database to false. I found info in another thread that suggests using
Column.Attributes=adColNullable
but I get an error message saying "The parameter is incorrect."
I need it when appending a new field to a table. This is the code:
tbl.Columns.Append "Fld1",adVarWChar,20
tbl.Columns("Fld1"
.Properties("Jet OLEDB: Allow Zero Length"
=True
now how to set Required = False
Any ideas?
Thanks, Mangro
how do I set the required property of a text field in Access database to false. I found info in another thread that suggests using
Column.Attributes=adColNullable
but I get an error message saying "The parameter is incorrect."
I need it when appending a new field to a table. This is the code:
tbl.Columns.Append "Fld1",adVarWChar,20
tbl.Columns("Fld1"
now how to set Required = False
Any ideas?
Thanks, Mangro