Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Example of how to use $OutWinMsg
#1
hello

i have been trying to use this Function but i keep getting errors... not sure where to place it or what the proper syntax is... I assume you can point it to a specific control and once the user interact with the control it will output any messages of control (??? or not...)

can you show where in a Dialog script or sub-DlgProc this would be placed and what the proper syntax would be to return messages of controls??

thanks for the help
#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
#3
excellent thanks


Forum Jump:


Users browsing this thread: 1 Guest(s)