03-24-2015, 06:00 AM
QM thread variables behave like static variables in C/C++:
assignment is executed once if it is in declaration statement.
int- j=i ;;once in thread
j=i ;;everytime
---
To pass variables to a dialog procedure can be used:
thread variables,
#sub DlgProc v,
ShowDialog(... param) and DT_GetParam.
assignment is executed once if it is in declaration statement.
int- j=i ;;once in thread
j=i ;;everytime
---
To pass variables to a dialog procedure can be used:
thread variables,
#sub DlgProc v,
ShowDialog(... param) and DT_GetParam.