Problem I am familiar with the simple use of QSqlQuery::prepare() and QSqlQuery::bindValue() as in: QSqlQuery query; query.prepare(“SELECT name, address FROM […]
Tag: qt
Custom QT widget for QStackedWidget
Problem I have a widget like below: class MainWidget(QWidget): #This is grabbed by another function for the name of the […]
Settings dialog, using information from its parent window
Problem My MainWindow popups a SettingsDialog. The setting dialog need to hide certain fields if the connected device is certain […]