addproduct.ui.h
来自「一个简单的pos机程序」· C头文件 代码 · 共 39 行
H
39 行
/****************************************************************************** ui.h extension file, included from the uic-generated form implementation.**** If you wish to add, delete or rename functions or slots use** Qt Designer which will update this file, preserving your code. Create an** init() function in place of a constructor, and a destroy() function in** place of a destructor.*****************************************************************************/#include ".ui/Addproduct.h"#include ".ui/productInfo.h"#include <qdatatable.h>#include <qsqlcursor.h>#include <qsqlrecord.h>#include <qstring.h>#include <qmessagebox.h>void Form3::pushButton10_clicked(){ int err=0; QSqlCursor cur( "product" ); QSqlRecord *buffer = cur.primeInsert(); buffer->setValue( "code", lineEdit4->text() ); buffer->setValue( "name", lineEdit5->text() ); buffer->setValue( "saleprice", lineEdit8->text().toDouble() ); buffer->setValue( "count", spinBox3->value() ); buffer->setValue( "discount", spinBox5->value() ); err = cur.insert(); ((Form2 *)parentWidget())->dataTable3->refresh(QDataTable::RefreshAll);}void Form3::pushButton12_clicked(){ this->close();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?