Howdy!
I understand that the keyboard logic is taken care of in Dialogs created by DialogBoxParam. If this were the case, how do i process this MSG? Do i have to 'hook' my own Dialog?
Thanks :)
Latigo
I understand that the keyboard logic is taken care of in Dialogs created by DialogBoxParam. If this were the case, how do i process this MSG? Do i have to 'hook' my own Dialog?
Thanks :)
Latigo
I think I came across the same problem a while ago.
I managed to solve it using a keyboard accelerator.
Can a keyboard accelerator help with your situation.
I managed to solve it using a keyboard accelerator.
Can a keyboard accelerator help with your situation.
you always can emulate DialogBoxParam by CreateDialogParam and so you get all messages you want:
and in your dialog box:
japheth
invoke CreateDialogParam ...
.while (1)
invoke GetMessage...
...
.endw
and in your dialog box:
.if (eax == WM_INITDIALOG)
invoke GetParent,hWnd
invoke EnableWindow,eax,0
...
.elseif (eax == WM_CLOSE
invoke GetParent,hWnd
invoke EnableWindow,eax,1
...
japheth
Thanks Japheth
Better late than never... :)
Better late than never... :)
If you get it figured out.. i would be currious to see your code...
Good luck..
:alright:
NaN
Good luck..
:alright:
NaN