DataExchange in MFC
DataExchange in MFC
(OP)
Hi there
I've been having issues with this for a long time. I need two dialogs to communicate. I can get it to work so that if the child dialog is closed the parent gets updated. Is there a way to do it so that it is simultaneous. it's supposed to be for an exposure controll - and if I have to close the window every time I adjust the dial it gets a bit didious.
any ideas?
thank you for your time
I've been having issues with this for a long time. I need two dialogs to communicate. I can get it to work so that if the child dialog is closed the parent gets updated. Is there a way to do it so that it is simultaneous. it's supposed to be for an exposure controll - and if I have to close the window every time I adjust the dial it gets a bit didious.
any ideas?
thank you for your time





RE: DataExchange in MFC
Why can't you simply establish a semaphore that both can see and monitor each time it runs through the loop?
TTFN
RE: DataExchange in MFC
thanks
RE: DataExchange in MFC
RE: DataExchange in MFC
Do you have a copy of the book by Jeff Prosise, "Programming Windows with MFC"? It is one reference you might want to consult. You could probably figure out what you need to do with the information in this book. Here is a suggestion. In the child dialog class, do you have a handler to process messages generated by the dial control? The child dialog class dial control handler could execute a bit of code something like:
...
<update parent member variables>
...
this->GetParent()->UpdateDate(false);
assuming that the child dialog can manipulate the member variables of the parent dialog. Hope this helps.
Good Luck,
Greg Hansen
Expectation is the mother of disappointment
RE: DataExchange in MFC
Sorry, I don't tell you "how" as I myself do not know it. See if you can find it in help files or MSDN.
Ciao.