Tagged Questions
0
votes
0answers
103 views
Qt post data request to php server
Hi there I already made the example:
QUrl qurl = QUrl("someip/project/log");
QByteArray postData;
QUrl params;
params.addQueryItem("name","Myname");
postData = params.encodedQuery();
// Call the ...
1
vote
1answer
274 views
qt progress bar is not working properly
I have one problem..
I am making post request to php script. And I am getting back result as an xml. How can I make my qprogressbar working.
I have tried this:
v
oid MainWindow::init()
{
url = ...