Is there a command for unhiding all hidden forms?
D Dirk Goldgar Feb 23, 2010 #2 croy said: Is there a command for unhiding all hidden forms? Click to expand... 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 ------
croy said: Is there a command for unhiding all hidden forms? Click to expand... 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 ------
J Jack Leach Feb 23, 2010 #3 Dim frm As Form For Each frm In Forms frm.Visible = True Next Set frm = Nothing hth -- Jack Leach www.tristatemachine.com "I haven''t failed, I''ve found ten thousand ways that don''t work." -Thomas Edison (1847-1931)
Dim frm As Form For Each frm In Forms frm.Visible = True Next Set frm = Nothing hth -- Jack Leach www.tristatemachine.com "I haven''t failed, I''ve found ten thousand ways that don''t work." -Thomas Edison (1847-1931)
C croy Feb 23, 2010 #4 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 ------ Click to expand... Thank you sir!
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 ------ Click to expand... Thank you sir!
C croy Feb 23, 2010 #5 Dim frm As Form For Each frm In Forms frm.Visible = True Next Set frm = Nothing Click to expand... Thank you sir!
Dim frm As Form For Each frm In Forms frm.Visible = True Next Set frm = Nothing Click to expand... Thank you sir!