C
croy
Is there a command for unhiding all hidden forms?
croy said:Is there a command for unhiding all hidden forms?
No built-in command that I know of, but here's a simple sub to do it:
'------ start of code ------
Sub ShowAllHiddenForms()
Dim frm As Access.Form
For Each frm In Forms
If frm.Visible = False Then
frm.Visible = True
End If
Next frm
End Sub
'------ end of code ------
Dim frm As Form
For Each frm In Forms
frm.Visible = True
Next
Set frm = Nothing