Hi
Is there a technique to hide the forms to complete? (or all object in access)
Similar to the following tables:
Is there a technique to hide the forms to complete? (or all object in access)
Similar to the following tables:
Code:
Dim db As Database
Dim obj As AccessObject, dbs As Object
Dim tdf As TableDef
Set dbs = Application.CurrentData
Set db = CurrentDb
For Each obj In dbs.AllTables
Set tdf = db.TableDefs(obj.Name)
If Left(tdf.Name, 4) <> "msys" And tdf.Attributes <> 1073741824 Then
tdf.Attributes = tdf.Attributes + dbHiddenObject
End If
Next
Set tbl = Nothing
db.Close
Set db = Nothing