|
|
|
|
SysWinShow (Function) In french: SysFenAffiche Modifies the display status of a window. Remark: SysWinShow displays a window that has not been created in WINDEV. The handle number of this window is returned by SysWinHandle.
// Display the "Microsoft Word - 2000 Sales.DOC" window ResHandle = SysWinHandle("Microsoft Word - Sales 2000.DOC") ResWindowShow = SysWinShow(ResHandle, swsVisible)
Syntax
<Result> = SysWinShow(<Window handle> [, <Type of display>])
<Result>: Boolean - True if the specified window was displayed beforehand,
- False otherwise.
<Window handle>: Integer Handle of the window to be used. This handle is returned by SysWinHandle. <Type of display>: Optional constant Indicates the status of the specified window:
| | swsActivate | Activates an inactive window | swsHide | Makes the window invisible and activates another window. | swsIconic | Minimizes the window. | swsMaximize | Maximizes the window. | swsMinimize | Minimizes the window. | swsNormal (Default value) | Displays the window in its initial size and position | swsRefresh | Refreshes the window | swsRestore | Restores a window to its initial size and position. | swsVisible | Makes a window visible and displays it with its initial size and position (if the window was made invisible by the swsHide constant) |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|