1137
Link: @CplusplusQt Embedded: @EMBCpp • No DM without prior permission • Behave friendly • No NSFW • No Spam • No unauthorized Bots • Don't advertise other groups
https://www.bloodshed.net/data/_uploaded/image/screenshots/dcpp5_scr-1.png
Читать полностью…
In reality you do not need even Dev-C++ . You can use a simple NotePad + a command line with g/g++ . But Qt Creator is so nice and easy
Читать полностью…
Welcome to the group, -! :-)
Wanna share your story of how you started with Qt, QML or C++? Maybe some nice feature that made you stick with it.
Rules are set on the description of the group. :)
Welcome to the group, -! :-)
Wanna share your story of how you started with Qt, QML or C++? Maybe some nice feature that made you stick with it.
Rules are set on the description of the group. :)
Welcome to the group, @Bogdan1720! :-)
Wanna share your story of how you started with Qt, QML or C++? Maybe some nice feature that made you stick with it.
Rules are set on the description of the group. :)
I wanted to make a code that passes the cin value of the question, and after I answer it, it saves it in a .txt file.
Читать полностью…
Problem solved - I simply forgot to include the boundary in the header: Instead of
request.setHeader(QNetworkRequest::ContentTypeHeader,
"multipart/form-data");
it should have been
request.setHeader(QNetworkRequest::ContentTypeHeader,
QString("multipart/form-data; boundary=%1").arg(boundary).toLocal8Bit());
If you run the qt installer you can select just qt creator (and mingw if you want)
Читать полностью…
You technically don’t have to install the entire qt sdk
Читать полностью…
I have floating qdialog. I can't add it to the same layout
Читать полностью…
Nah. I just google my questions and in 98% of the times, answer is in the first stackoverflow post
Читать полностью…
No one send messages here. All coders use chatGpt or other AIs.
Читать полностью…
I think you can duplicate stdout and read it back, but if you know what you are going to print you shouldn’t have to.
Читать полностью…
Welcome to the group, @phoenix_9226! :-)
Wanna share your story of how you started with Qt, QML or C++? Maybe some nice feature that made you stick with it.
Rules are set on the description of the group. :)
In essence, I'm
1) Creating a netword request, and let it know that the content will be multipart/form-data
2) Creating a payload with all the data
3) Posting the whole thing.
Result: No file uploaded. Maybe there's an error handling this somewhere, but I'm unsure where to start looking.