11-07-2013, 10:54 AM
Hi Gintaras, hi all
searched the forum but unlucky so i try here.
Created a simple dialog with only a static text in it.
Function Dialog2
Would like to launch it, and from another macro be able to change the static text on demand.
How to achieve that?
thanks
searched the forum but unlucky so i try here.
Created a simple dialog with only a static text in it.
Function Dialog2
\Dialog_Editor
function# hDlg message wParam lParam
if(hDlg) goto messages
str controls = "3"
str c3one
if(!ShowDialog("Dialog2" &Dialog2 &controls)) ret
;BEGIN DIALOG
;0 "" 0x10C00AC8 0x0 0 0 224 131 "Macro en cours"
;3 Static 0x54000001 0x8000000 88 22 48 10 "Text"
;END DIALOG
;DIALOG EDITOR: "" 0x2030605 "" "" "" ""
ret
;messages
sel message
,case WM_LBUTTONDBLCLK
,DT_Cancel hDlg
,case WM_INITDIALOG
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,case IDCANCEL
ret 1
Would like to launch it, and from another macro be able to change the static text on demand.
How to achieve that?
thanks