G
George Hester
I have made a table with Properties using the Catalog Object from ADOX. I have an OLE Object field and by default that field has the "Required" Property set to "Yes." I'd prefer it set to "No." So I tried this:
tblLoadOLE.Columns("OLEFile").Properties("Required") = "No"
But that doesn't work. The error is:
ADODB.Properties error '800a0cc1'
Item cannot be found in the collection corresponding to the requested name or ordinal.
Any suggestions how to set the "Required" Property to "No?" Thanks.
tblLoadOLE.Columns("OLEFile").Properties("Required") = "No"
But that doesn't work. The error is:
ADODB.Properties error '800a0cc1'
Item cannot be found in the collection corresponding to the requested name or ordinal.
Any suggestions how to set the "Required" Property to "No?" Thanks.