03-30-2015, 04:54 PM
Dear Gintaras,
I used the following code to pass parameters from the thread to the dialog :
Macro temp01
to the dialog :
Function DialogExtCall
It works. However, I would appreciate it, if you could confirm its correctness.
I used the following code to pass parameters from the thread to the dialog :
Macro temp01
type RCt ~tzuni #tam
RCt x
x.tzuni="Some string value"
x.tam=123
int dialogHandle=win("TamTiriri" "#32770")
SendMessage(dialogHandle WM_APP+1 0 &x)to the dialog :
Function DialogExtCall
,case WM_APP+1
,out "action"
,RCt* x=+lParam
,RCDlg=x.tzuni
,_i=x.tam
,out F"{RCDlg} {_i}"It works. However, I would appreciate it, if you could confirm its correctness.
