Previous Document Next Document

Object Model Reference : Classes : W : Window : Methods : Window.Activate


Window.Activate

Sub Activate()

Description

Member of Window

The Activate method opens a window (if it is not currently open) and makes it the active window.

Some operating systems do not allow the application to activate itself, to prevent intervention with the current activity. If the application cannot be activated, the application window flashes on the taskbar, but it does not appear in the foreground.

VBA example

The following VBA example sets the last window in the collection as the foreground window.

Sub Test()
 Dim Wnd As Window
 Set Wnd = ActiveDocument.Windows(ActiveDocument.Windows.Count)
 Wnd.Activate
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.