相信自己,只有不想做的,没有做不到的。
发布时间:2013-11-25 17:15:07
启动linux内核配置光标界面时具体如下:cfd2006@christian:~/QT2410E/kernel-2.6$ make menuconfig/usr/bin/ld: cannot find -lncursescollect2: ld 返回 1-e>> Unable to find the Ncurses libraries.>>>> You must install ncurses-devel in order>> to use 'make menuconfig'make[2]: *** [scripts/lxdialog/.........【阅读全文】
发布时间:2013-11-22 13:18:43
有两种方法1.使用QString QString::number ( long n, int base = 10 ) [static]如:long a = 63; QString s = QString::number(a, 10); // s == "63" QString t = QString::number(a, 16).toUpper(); // t == "3F"2.使用long a = 63; QString s = QString("%1").arg(a);推荐第1种用法 .........【阅读全文】
发布时间:2013-11-21 00:20:05
在widget.h中创建所使用控件的类,记得包含类的头文件QLabel *m_imgLabel; // QPushButton *init_btn; QPushButton *recog_btn; QPushButton *cap_btn; QPushButton .........【阅读全文】
发布时间:2013-11-15 23:52:44
原理先不讲,先给各位看官看一下实现的过程:第一步:配置内核Makefile 【2.6.22.6版本内核】make menuconfig General setup ----> Configure standard kernel features (for small systems) ----> | | .........【阅读全文】
发布时间:2013-11-15 23:38:57
在connection.h中写下如下内容 #ifndef CONNECTION_H#define CONNECTION_H#include <QMessageBox>#include <QSqlDatabase>#include <QSqlQuery>static bool createConnection(){ // 创建一个数据库连接,使用“connection1”为连接名 QSqlDatabase db1 = QSqlDatabase::addDatabase("QSQLITE", "connection1");.........【阅读全文】