T
TNL
Hi,
how can I set an access object unvisible with VBA?
I habe access 2000
Thanks
TNL
..
how can I set an access object unvisible with VBA?
I habe access 2000
Thanks
TNL
..
To hide a table definition in VBA you can use:
CurrentDB.TableDefs("TableName").Properties("Attributes")
=dbHiddenObject
TC said:dbHiddenObject is an undocumented system property.
It is *not* for what its name implies.