When you issue Shell commands, you can use the following enumeration members in your code in place of the actual values.
The Style argument takes the following AppWinStyle enumeration members:
Member | Constant | Description |
---|---|---|
Hide | vbHide | Window is hidden and focus is passed to the hidden window. |
NormalFocus | vbNormalFocus | Window has focus and is restored to its original size and position. |
MinimizedFocus | vbMinimizedFocus | Window is displayed as an icon with focus. |
MaximizedFocus | vbMaximizedFocus | Window is maximized with focus. |
NormalNoFocus | vbNormalNoFocus | Window is restored to its most recent size and position. The currently active window remains active. |
MinimizedNoFocus | vbMinimizedNoFocus | Window is displayed as an icon. The currently active window remains active. |