markus3000
Programmer
- Aug 24, 2010
- 9
I'd like to get a console window up for debugging purposes, even though it's an "Application"; then I can use cin and cout. Is this possible?
thanks
thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
AnsiString MsgStr;
//MsgStr collects from info that you need to send out
//Use App's message box
Application->MessageBox(MsgStr, "Here's the info.", MB_OK);
//Or use a dialog box
MessageDlg(MsgStr.c_str(), mtInformation, TMsgDlgButtons() << mbOK, 0);