Lisa,
Here's how you can do it for tables:
Sub Unhide_Tables()
For Each vObj In CurrentDb.TableDefs
vHidden = Application.GetHiddenAttribute(acTable, vObj.Name)
If Left(vObj.Name, 4) <> "MSys" And vHidden = True Then
Application.SetHiddenAttribute acTable, vObj.Name, False
End If
Next
End Sub
Likewise for QueryDefs (not like "~sq_"), Forms etc.
HTH,
Nikos
> Does anyone know code to unhide all the hidden objects in the database?
>
[quoted text clipped - 23 lines]
> End Function
> ----------------------
LisaB - 02 May 2005 16:49 GMT
Thank you
> Lisa,
>
[quoted text clipped - 41 lines]
> > End Function
> > ----------------------