To make the Word application visible you need set the Application.Visible property to true.
Application.Visible = True
There is no other fallback mechanism. That is enough for making Word visible.
Also you may find the Window.Activate method helpful. It activates the specified window. The Window
object is a member of the Windows
collection. The Windows
collection for the Application
object contains all the windows in the application, whereas the Windows
collection for the Document
object contains only the windows that display the specified document.
Use Windows(Index)
, where Index
is the window name or the index number, to return a single Window
object. For example, the following example maximizes the Document1
window:
Windows("Document1").WindowState = wdWindowStateMaximize