We'd have to see the code you used to open the page.
We'd have to see the code you used to open the page.
hi
i'm sending the code............
You create the process on the stack. QProcess::start() doesn't block the flow until the process exits but instead just schedules its start and continues the program. At that time the function returns and the process gets destroyed before it even had a chance to start. To avoid it, you have to create the process on heap.Qt Code:
void keyclass::enter() { process.addArgument("http://www.yahoo.com"); process.start(); }To copy to clipboard, switch view to plain text mode
hi....
thanks for the reply. can you say me how create the process on a heap...?
Using operator "new".
Qt Code:
To copy to clipboard, switch view to plain text mode
hi...
thank you for the reply. i'l try that and will let you know..
hi....
thank you. i finally got it working.....
Bookmarks