Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
I need to get the list of applications working
Message
From
09/10/2000 07:39:10
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Title:
I need to get the list of applications working
Miscellaneous
Thread ID:
00426736
Message ID:
00426736
Views:
65
What is wrong here

Thanks

DECLARE INTEGER GetWindow IN win32api ;
INTEGER ncurr_window_handle, ;
INTEGER ndirection

DECLARE INTEGER GetWindowText IN win32api ;
INTEGER n_win_handle, ;
STRING @ cwindow_title, ;
INTEGER ntitle_length

DECLARE INTEGER EnumWindows IN win32api ;
INTEGER lpEnumFunc, ;
INTEGER lparam

ret = EnumWindows(EnumWindowsProc(), 0)


FUNCTION EnumWindowsProc(hwnd, lParam)
? hwnd
buffer = SPACE(255)
cWinCap = GetWindowText(hwnd, buffer, LEN(buffer))
RETURN 1
ENDFUNC
Next
Reply
Map
View

Click here to load this message in the networking platform