09-19-2008, 03:53 PM
2. I tried a few examples without any luck. Can you please give small example of ss_notify use in dialog?
\Dialog_Editor
function# hDlg message wParam lParam
if(hDlg) goto messages
BEGIN DIALOG
0 "" 0x90C80A44 0x100 0 0 223 135 "Dialog"
1 Button 0x54030001 0x4 120 116 48 14 "OK"
2 Button 0x54030000 0x4 170 116 48 14 "Cancel"
3 Static 0x5400100E 0x20000 32 16 140 74 ""
END DIALOG
DIALOG EDITOR: "" 0x2030001 "" "" ""
out
str controls = "3"
str sb3 = "$windows$\Greenstone.bmp"
if(!ShowDialog("DlgSS3" &DlgSS3 &controls)) ret
ret
messages
sel message
case WM_INITDIALOG
case WM_DESTROY
case WM_COMMAND goto messages2
ret
messages2
sel wParam
case STN_CLICKED<<16|3
case IDOK
case IDCANCEL
ret 1
3.Ahhh, thank you. Much better method.
\Dialog_Editor
function# hDlg message wParam lParam
if(hDlg) goto messages
BEGIN DIALOG
0 "" 0x90C80A44 0x100 0 0 223 135 "Dialog"
1 Button 0x54030001 0x4 120 116 48 14 "OK"
2 Button 0x54030000 0x4 170 116 48 14 "Cancel"
3 Static 0x5400100E 0x20000 32 16 140 74 ""
END DIALOG
DIALOG EDITOR: "" 0x2030001 "" "" ""
out
str controls = "3"
str sb3 = "$windows$\Greenstone.bmp"
if(!ShowDialog("DlgSS3" &DlgSS3 &controls)) ret
ret
messages
sel message
case WM_INITDIALOG
case WM_DESTROY
case WM_COMMAND goto messages2
ret
messages2
sel wParam
case STN_CLICKED<<16|3
case IDOK
case IDCANCEL
ret 1
3.Ahhh, thank you. Much better method.
