Publié : dim. 10/avr./2005 15:13
Alt Gr + 6 ? (pas le 6 du pad numerique, l'autre)
ben, c'est simple, je traite pas l'information #PB_Event_Close qui signifie que l'on a appuyé sur Alt-F4 ou sur la croix de la fenêtreSinon j'ai pas compris comment tu as désactivé alt+f4 !
Code : Tout sélectionner
Enumeration
; Menu
#ATLF4
EndEnumeration
If OpenWindow(0, 0, 0, 200, 200, #PB_Window_ScreenCentered | #PB_Window_SystemMenu, "Test")
If CreateGadgetList(WindowID())
AddKeyboardShortcut(0, #PB_Shortcut_F4 | #PB_Shortcut_Alt, #ATLF4)
Repeat
Event = WaitWindowEvent() ; on récupère les évènements
If Event = #PB_EventMenu
Select EventMenuID()
Case #ATLF4
MessageRequester("Info", "Appui sur ALT+F4")
EndSelect
EndIf
Until Event = #PB_Event_CloseWindow
EndIf
EndIf