Say a user would open up DialogA (modal). From Dialog A, the user click on a button to open DialogB (modal). In DialogB, the user will key in a value (double) into an edit box. How do I pass this value to another edit box on DialogA (which I would like it to appear to show an updated display) after the user close DialogB?
I encountered problem because there is no longer any INIT because DialogA is already opened... Is there any way to do things like UpdataData(); ???
By the way, I have already declared a global variable. Say double GlobalVar.
In a header file... I have extern double GlobalVar.
Then I include this header into the related source files of both Dialog A & B.
I'm a beginner and examples would be greatly appreciated. Thanks!
I encountered problem because there is no longer any INIT because DialogA is already opened... Is there any way to do things like UpdataData(); ???
By the way, I have already declared a global variable. Say double GlobalVar.
In a header file... I have extern double GlobalVar.
Then I include this header into the related source files of both Dialog A & B.
I'm a beginner and examples would be greatly appreciated. Thanks!