09-01-2009, 09:47 AM
In older versions worked...
Function test1
Function test1
\Dialog_Editor
function# hDlg message wParam lParam
if(hDlg) goto messages
str controls = "3 4"
str e3 e4
if(!ShowDialog("test1" &test1 &controls)) ret
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 223 135 "Dialog"
;1 Button 0x54030001 0x4 120 116 48 14 "OK"
;2 Button 0x54030000 0x4 170 116 48 14 "Cancel"
;3 Edit 0x54030080 0x200 10 16 96 14 ""
;4 Edit 0x54030080 0x200 10 40 96 14 ""
;5 Button 0x54032000 0x0 144 32 48 14 "Button"
;END DIALOG
;DIALOG EDITOR: "" 0x2030107 "" "" ""
ret
;messages
sel message
,case WM_INITDIALOG
,act id(3 hDlg)
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case 5
,case IDOK
,case IDCANCEL
ret 1