Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
I need to get the list of applications working
Message
 
 
À
09/10/2000 07:39:10
Information générale
Forum:
Visual FoxPro
Catégorie:
Fonctions Windows API
Divers
Thread ID:
00426736
Message ID:
00426738
Vues:
35
The biggest problem is that VFP does not support call-back functionality when using the WinAPI. EnumWindows can not be used in VFP for this reason.

>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
Larry Miller
MCSD
LWMiller3@verizon.net

Accumulate learning by study, understand what you learn by questioning. -- Mingjiao
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform