Posts: 81
Threads: 31
Joined: Mar 2015
Hello, Gintaras!
I couldn't find how to avoid closing GUI when pressing Enter or ESC key.
Thank you always and for last 4 years with QM.
Posts: 1,337
Threads: 61
Joined: Jul 2006
11-20-2018, 05:24 PM
(This post was last modified: 11-20-2018, 05:46 PM by Kevin.)
is this a qm dialog this happens in?
If it is simply do this
Function
Dialog3
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 224 136 "Dialog"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040700 "*" "" "" ""
if(!ShowDialog(dd &sub.DlgProc 0)) ret
#sub DlgProc
function# hDlg message wParam lParam
sel message
,case WM_INITDIALOG
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,ifk(Y) ret 0 ;;disable closing on enter
,case IDCANCEL
,ifk(Z) ret 0 ;;disable closing on Esc
ret 1
Posts: 81
Threads: 31
Joined: Mar 2015
11-20-2018, 05:32 PM
(This post was last modified: 11-20-2018, 05:36 PM by luvu2des.)
WOW, lightning speed!
Thank you for reply!!!
By the way,
ifk(Z) ret 0 ;;disable closing on enter <-- I'm not sure but ifk(Y) seems right?
Posts: 1,337
Threads: 61
Joined: Jul 2006
11-20-2018, 05:36 PM
(This post was last modified: 11-20-2018, 05:47 PM by Kevin.)
oops had a typo in code corrected in post above now.
code fixed in above post
Posts: 81
Threads: 31
Joined: Mar 2015