📄 addproduct.ui.h~
字号:
/****************************************************************************** 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 <qsqlcursor.h>#include <qsqlrecord.h>#include <qstring.h>#include <qmessagebox.h>void Form3::pushButton10_clicked(){ int err=0; QSqlCursor cur( "CommodityInfo" ); QSqlRecord *buffer = cur.primeInsert(); buffer->setValue( "ID", 10); buffer->setValue( "ComoCode", lineEdit4->text() ); buffer->setValue( "ComoName", lineEdit5->text() ); buffer->setValue( "ComoPrice", lineEdit8->text().toDouble() ); buffer->setValue( "ComoCount", spinBox3->value() ); buffer->setValue( "ComoDisc", spinBox5->value() ); buffer->setValue( "ComoClassNo", 1 ); err = cur.insert(); this->parent->dataTable9->refresh(QDataTable::RefreshAll);}void Form3::pushButton12_clicked(){ this->close();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -