Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 1.74 KB

File metadata and controls

52 lines (39 loc) · 1.74 KB

Home

Function name : IsWindow

Group: Window - Library: user32


The IsWindow function determines whether the specified window handle identifies an existing window


Code examples:

How to activate Windows Calculator
Simple Window Viewer
Terminating all running applications from a VFP program
Minimizing all running applications
Scanning the hierarchy of child windows down from the main VFP window
Extended MessageBox Class
Custom GDI+ class
Accessing Adobe Reader 7.0 main menu from VFP application
How to make a VFP form fading out when released (GDI+ version)
How to control Adobe Reader 9.0 (SDI mode) from VFP application
Displaying dimmed window behind VFP top-level form
Obtaining names and positions for shortcuts located on the Windows Desktop
GDI+: Implementing image scrolling with inertia

Declaration:

BOOL IsWindow(
    HWND  hWnd 	// handle of window
   );  

FoxPro declaration:

DECLARE INTEGER IsWindow IN user32 INTEGER hwnd  

Parameters:

hWnd Specifies the window handle


Return value:

If the window handle identifies an existing window, the return value is TRUE; otherwise, it is FALSE