Tagged Questions

0
votes
1answer
116 views

Python/PyQT QString won’t insert into MySQL database

Hi all, I am trying to trying to retrieve some values from a user using a QLineEdit widget. When a QPushButton raises a clicked event, I want the text to be retrieved from all QLineEdit widgets and …
3
votes
1answer
94 views

Question about a QList<QStringList> in Qt

I'm using Qt 4.5 and im working with a QList<QStringList> which is a list of string list. Now I want to replace one string inside one stringList but with it seems unusual to type. I have found …
2
votes
5answers
299 views

Qt UI for existing C++ project

I have already written a C++ program and I would like to write a GUI for it. I realize Qt is a wonderful tool, however, Qt has it's own classes, which make me quite confused. eg: instead of String, Qt …
4
votes
6answers
1k views

Decoding printf statements in C (Printf Primer)

I'm working on bringing some old code from 1998 up to the 21st century. One of the first steps in the process is converting the printf statements to QString variables. No matter how many times I …