Application.GetHiddenAttribute (Access)
The GetHiddenAttribute method returns the value of a hidden attribute of a Microsoft Access object in the object's Properties dialog box, available by selecting the object in the Database window and choosing Properties on the View menu.
The GetHiddenAttribute method (along with the SetHiddenAttribute method) provides a means of changing an object's hidden attribute from Visual Basic code. With these methods, you can set or read the hidden option available in the object's Properties dialog box. Because the user can set the hidden attributes by selecting or clearing a check box, the GetHiddenAttribute method returns True if the option setting is Yes (the check box is selected) or False if the option setting is No (the check box is cleared). For example, to set an option of this kind by using the SetHiddenAttribute method, specify True or False for the setting argument, as in the following.
GetHiddenAttribute (ObjectType, ObjectName)
Application.SetHiddenAttribute acTable,"Customers", True
Arguments
The following arguments are required:
ObjectType (AcObjectType) - An AcObjectType constant that specifies the type of Access object.
Here you can find possible values for
ObjectName (String) - The name of the Access object.