Hi to all:
I would like to change the field allowzerolenght,set to false, to true in my DB access.
Any suggestions to do this?
Thanks
Printable View
Hi to all:
I would like to change the field allowzerolenght,set to false, to true in my DB access.
Any suggestions to do this?
Thanks
:confused: In access, go to your table design and change allowzerolenght to True.
no no...through Code!! :blush:
this is the way:
VB Code:
Set top = db.TableDefs(anos) Set fld = top.Fields("citesPai") fld.Properties("AllowZeroLength") = True
Thanks