Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Execute a subfunction in a dialog box
#1
Hi,

I want to execute the corresponding subfunction in the dialog box according to the sequence number entered, but it will prompt an error

[Image: ab.gif]



Macro Macro3
Code:
Copy      Help
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 224 136 "Dialog" "4"
;3 Edit 0x54030080 0x200 64 44 96 13 ""
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040C02 "*" "" "" ""

str controls = "3"
str e3
if(!ShowDialog(dd &sub.DlgProc &controls)) 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
,_s.getwintext(id(3 hDlg))
,out F"sub.Sub{_s}"
,mac F"sub.Sub{_s}" ;;failure
,
,mac "sub.Sub1" ;;succeed
,mac "sub.Sub2" ;;succeed
,case IDCANCEL
ret 1

#sub Sub1
mes "I am sub1"

#sub Sub2
mes "I am sub2"


Messages In This Thread
Execute a subfunction in a dialog box - by Davider - 12-10-2022, 04:33 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)