Categories: Symbian C++ | Code Examples | How To | Web Services | UI
This page was last modified 11:38, 26 November 2007.
How to create a simple console
From Forum Nokia Wiki
#include <e32cons.h> Link against: euser.lib
CConsoleBase *console; console=Console::NewL(_L("Console"),TSize(KConsFullScreen,KConsFullScreen)); TInt Err; TRAP(Err,ConsoleMainL()); if(Err) console->Printf(_L("TRAP: Error(%d)\n"),Err); console->Printf(_L("\n[Press any key]")); console->Getch(); delete console
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Start and Stop exe | kkrish | General Symbian C++ | 22 | 2007-06-28 10:28 |
| Carbide vs 3.0 | simibee | Symbian Tools & SDKs | 4 | 2008-10-06 06:20 |
| Bluetooth console. | manugarrote | Python | 2 | 2008-07-10 13:04 |
| few questions about console application | reuvend | General Symbian C++ | 5 | 2008-07-17 10:31 |
| using Console from GUI | teknolog | General Symbian C++ | 1 | 2006-01-09 03:45 |
