Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Example of how to use $OutWinMsg
#2
example using your other posts dialog 
syntax is OutWinMsg message wParam lParam

Function Dialog9
Code:
Copy      Help
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 224 136 "Dialog" "4"
;3 Button 0x54012003 0x0 16 48 48 10 "Check"
;4 Edit 0x54030080 0x200 72 48 96 12 ""
;5 Button 0x54032000 0x0 172 48 48 14 "Button"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040A00 "*" "" "" ""

str controls = "3 4"
str c3Che e4
c3Che=1
if(!ShowDialog(dd &sub.DlgProc &controls)) ret


#sub DlgProc
function# hDlg message wParam lParam
OutWinMsg message wParam lParam
sel message
,case WM_INITDIALOG
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,case IDCANCEL
,case 5 ;;Button
,DT_SetControl(hDlg 3 "0")

ret 1


Messages In This Thread
Example of how to use $OutWinMsg - by ilcaa - 07-22-2020, 10:23 PM
RE: Example of how to use $OutWinMsg - by Kevin - 07-23-2020, 12:26 AM
RE: Example of how to use $OutWinMsg - by ilcaa - 07-23-2020, 12:38 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)