彩票走势图

彩票走势图 > 慧问 > 频道

能否将Delph中的变量组迁移到FastReport[FASTREPORT for COM/ActiveX]

发表于2019-05-10 回复:0 查看:2539  |  
在使用FastReport报表时,能否将Delph中的变量组迁移到FastReport?
1个回答
  • 1970-01-01 08:00
    <pre class='brush: cpp'>#include <QApplication> #include "mainwindow.h" #include<QDebug> #include<QEvent> #include<QKeyEvent> //先写一个类,命名为MyObeject 继承与QObjectclass myObject:public QObject { public: bool eventFilter (QObject *obj, QEvent *event) //重新实现此虚函数 { if(event->type()==QEvent::KeyPress) { QKeyEvent *key=static_cast<QKeyEvent *>(event);//将QEvent类型转变为子类QKeyEvent类型,才能使用子类的key()函数 if(key->key()==Qt::Key_F1)//如果按下的键是F1 { qDebug() << "按下了F1键"; //打印出消息,这里只是为了测试 return true; } } return QObject::eventFilter(obj,event); } }; //在main函数调用installEventFilter()函数 int main(int argc, char *argv[]) { QApplication a(argc, argv); myObject *obj= new myObject; a.installEventFilter(obj); MainWindow w; w.show(); return a.exec(); }</pre> 希望可以帮助到新手
    1
    回复 举报
回复

登录 慧都网发表评论

扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP