DrkPaladin
Programmer
I would like to create a modeless dialog that runs in the background that I can use to transfer data to and take data from it with mutliple modal dialogs...
I created my Modeless Dialog using this:
//////////////////////////////////////////////
CStatisticsDlg *pStats = new CStatisticsDlg();
pStats->Create(IDD_STATISTICS, this);
pStats->ShowWindow(SW_SHOW);
//////////////////////////////////////////////
and my Modal Dialogs using this:
//////////////////////////////////////////////
CBeginningDlg dlgBegin(this);
dlgBegin.DoModal();
//////////////////////////////////////////////
What is the code to transfer data to and take data from the Modeless Dialog???
I created my Modeless Dialog using this:
//////////////////////////////////////////////
CStatisticsDlg *pStats = new CStatisticsDlg();
pStats->Create(IDD_STATISTICS, this);
pStats->ShowWindow(SW_SHOW);
//////////////////////////////////////////////
and my Modal Dialogs using this:
//////////////////////////////////////////////
CBeginningDlg dlgBegin(this);
dlgBegin.DoModal();
//////////////////////////////////////////////
What is the code to transfer data to and take data from the Modeless Dialog???