导出或打印时的计时页面

来源:互联网 发布:淘宝装机服务靠谱吗 编辑:程序博客网 时间:2024/06/07 03:34
/**
* 打印
*/
protected void btnPrintSetting_actionPerformed(ActionEvent e)
throws Exception {
verifyInput();
final FDCProgressDialog diag = FDCProgressDialog.createProgressDialog(this, true);
diag.run(false,true, new IFDCRunnableWithProgress() {
public void run(IFDCProgressMonitor monitor) {
monitor.beginTask("导出",-1);
monitor.setTaskName("正在导出,请稍候 ...");

try {


export();  //



disposeUIWindow();
} catch (Exception ex) {
PPMReceivingBillListUI.this.handUIException(ex);
}
monitor.done();
}
});

}




0 0
原创粉丝点击