S60V3 - displaying GUI from a Symbian 9 exe with no GUI classes
| Mon, 2007-12-31 15:38 | |
|
my program is an exe with no GUI (there is no CAknApplication class, no icon in the phone menus). The program is a calling card application that runs in the background and monitors outgoing calls. |
|






Forum posts: 1918
... start an application that shows the screen you want to have.
(you have almost no alternative if you want to benefit of existing S60 UI classes. If you don't need this, you can create your own RWindow and draw directly into it.
Eric Bustarret
NewLC Founder & CEO / Professional Symbian OS Consultant
Forum posts: 40
Eric,
I tried your idea using the following code
RProcess iProcess;
iProcess.Create(_L("\\sys\\bin\\gui.exe"), _L(""));
iProcess.Resume();
The exe I am launching is that one showing the UI. The problem is it launches but does not come into the foreground (I can see it got launched using a long menu key press for active tasks).
How can I bring it into view ?
Thanks
Tal