Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How may I know is window modal
Message
De
11/11/2004 10:48:58
 
 
À
10/11/2004 10:34:54
Information générale
Forum:
Visual FoxPro
Catégorie:
Fonctions Windows API
Divers
Thread ID:
00960006
Message ID:
00960454
Vues:
9
Hi Denis,

Try with this:

Regards,

#DEFINE GWL_EXSTYLE 0xffffffec
#DEFINE WS_EX_DLGMODALFRAME 0x00000001

DECLARE INTEGER GetWindowLong IN Win32API INTEGER hWnd, INTEGER nIndex
lResult = GetWindowLOng( hWnd, GWL_EXSTYLE )

IF( BITAND( lResult, WS_EX_DLGMODALFRAME ) <> 0 )
MESSAGEBOX("SI")
ELSE
MESSAGEBOX("NO")
ENDIF
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform