ShowWindowsInTaskbar Property

Microsoft Word Visual Basic

expression.ShowWindowsInTaskbar

expression    Required. An expression that returns an Application object.

Example

This example switches the interface to list open documents only on the Window menu.

Sub SDIToMDI()
    Application.ShowWindowsInTaskbar = False
End Sub