ник: ????????
Re: Как можно определить положение формы (свернута в значек, обычный вид(окно) или развернута) ? IsIconic
VB Declaration
Declare Function IsIconic& Lib "user32" (ByVal hwnd As Long)
Description
Determines if the window is minimized.
Use with VB
No problem.
Parameter Type/Description
hwnd Long—Handle of window to test.
Return Value
Long—Nonzero on success, zero on failure.
Platform
Windows 95, Windows NT, Win16
==============
IsZoomed
VB Declaration
Declare Function IsZoomed& Lib "user32" (ByVal hwnd As Long)
Description
Determines if the window is maximized.
Use with VB
No problem.
Parameter Type/Description
hwnd Long—Handle of window to test.
Return Value
Long—Nonzero on success, zero on failure.
Platform
Windows 95, Windows NT, Win16
Example
Winview.vbp