True but that doesn't changed a lot of things but now I found this :
QProcess::FailedToStart == pbrowser.error()
with pbrowser.start(sbrowser, qsl); (instead of startDetached)
True but that doesn't changed a lot of things but now I found this :
QProcess::FailedToStart == pbrowser.error()
with pbrowser.start(sbrowser, qsl); (instead of startDetached)
Try:Qt Code:
QProcess::startDetached( "C:/Program Files/Internet Explorer/iexplore.exe", QStringList() << "http://www.google.com" );To copy to clipboard, switch view to plain text mode
valid instruction ! but don't work too :'(... that IS the problem...
of course, the file exists (QFile::exists return true)![]()
Last edited by agent007se; 23rd July 2006 at 00:46.
I tried this too :
Qt Code:
QStringList qsl; qsl.push_back("http://www.google.com"); pbrowser->start(sbrowser, qsl);To copy to clipboard, switch view to plain text mode
nothing at all (the message box shows 1 and the doc says:
it exists ... and I'm with the admin account (the only account in my computer)The process failed to start. Either the invoked program is missing, or you may have insufficient permissions to invoke the program.
Does this work on your system?
Qt Code:
#include <QCoreApplication> #include <QProcess> int main( int argc, char **argv ) { QProcess::startDetached( "C:/Program Files/Internet Explorer/iexplore.exe", QStringList() << "http://www.google.com" ); return 0; }To copy to clipboard, switch view to plain text mode
No and I just figured it out : KERIO (firewall)![]()
Is there equivalent functions that aren't blocked by firewalls and antivirus ??
resolved : I cleared all my settings in kerio...
Last edited by agent007se; 23rd July 2006 at 01:12.
Won't such functions render them useless?Originally Posted by agent007se
No, because only GoodPeopleTM can use them.Originally Posted by jacek
Lol. Very funnyOriginally Posted by wysota
. I just cleared my settings so it was my fault and now it works pretty well
.
Bookmarks