WindowHide Method

Hides a window.

Syntax

expression**.WindowHide(Name)**

*expression   *     Optional. An expression that returns an Application object.

Name    Optional String. The name of the window to hide. The name of a window is the exact text that appears in the title bar of the window. The default is the active window.

Example

The following example hides all windows except the active window.

Sub HideAllWindowsExceptActive()

    Dim I As Long   ' Index for For...Next loop

    For I = 1 To Windows.Count
        If Windows(I) <> ActiveWindow And Windows(I).Visible Then
         
                WindowHide Windows(I).Caption
        End If
    Next I
    
End Sub

Applies to | Application Object

See Also | WindowActivate Method | WindowArrangeAll Method | WindowMoreWindows Method | WindowNewWindow Method | WindowNext Method | WindowPrev Method | WindowUnhide Method