open-insight/SYSPROG/STPROCINS/SHOWWINDOW_EQUATES.txt
2024-03-25 15:17:34 -07:00

26 lines
765 B
Plaintext

compile insert showWindow_Equates
/*
Author Captain C
Date Oktober 2001
Purpose equates for the ShowWindow Windows API function.
The SW_ constants may also be mapped onto a form's
VISIBLE property
Amended Date Reason
======= ==== ======
*/
declare function showWindow
equ SW_HIDE$ to 0
equ SW_SHOWNORMAL$ to 1
equ SW_NORMAL$ to 1
equ SW_SHOWMINIMIZED$ to 2
equ SW_SHOWMAXIMIZED$ to 3
equ SW_MAXIMIZE$ to 3
equ SW_SHOWNOACTIVATE$ to 4
equ SW_SHOW$ to 5
equ SW_MINIMIZE$ to 6
equ SW_SHOWMINNOACTIVE$ to 7
equ SW_SHOWNA$ to 8
equ SW_RESTORE$ to 9