Hello!
I just want my app to start a browser and load an URL. I am using this code that compiles and runs on simulator, but when started, nothing happens.
#include <QtGui>
#include <QDesktopServices>
#include <QUrl>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QDesktopServices:penUrl(QUrl("http://www.google.com"));
return app.exec();
}
Is it possible that there is something missing in my simulator ( e.g browser), because i can't move through menus or do anything else (no menu at all). I have only installed Nokia QT SDK (read this tutorial http://wiki.forum.nokia.com/index.ph...r_With_Symbian).
Do i need to install something else to use all the functions of the simulated phone (sms, contacts, browser...) or is my code wrong?
Thank you.

penUrl(QUrl("http://www.google.com"));


