Re: Display message on main dialog GUI
On Thu, 25 Aug 2011 05:54:14 -0400, Nobody wrote:
"Me" <me@right.her> wrote in message
news:1cojc4e54l9yd.15mwhzz9di200$.dlg@40tude.net...
I normally display messages in the following way on the main Dialog:
c_Info.SetWindowText("Processing, Please wait..");
How do I display a message on the main Dialog from within another class?
Is that other class in another file? Assuming that you have c_Info declared
like this:
CDialog c_Info;
Then in the other file, you need to add:
extern CDialog c_Info;
Then use "c_Info.SetWindowText" as usual in the other file. On the other
hand, there are drawbacks to this approach like others suggested, see this
article:
http://www.flounder.com/messaging.htm
c_Info is a control variable for a CStatic text
My main dialog MyDialog calls the class ReadData.cpp
=========================================================
if (!ReadData.CRead(OpenCFile, 0)){
//error is processed here and returns false with code
}
=========================================================
// it passes a filename and a code which tells what to do
I would like my ReadData class to be able to send status messages to the
screen at c_Info on MyDialog.