我想使用QAxObject
Excel 文件。
我想以某种方式实现初始化,如下面的代码:
QAxObject* excel;//excel pointer
void initExcel(){
try
{
//if there excel process already running try to use it
}
//catch if it's not running
catch()
{
try
{
excel = new QAxObject("Excel.Application");
}
catch
{
//meassge if excel not exist/can't start
}
}
}
如何使用 QAxObject 捕获/抛出错误?我试图用谷歌搜索,但没有找到任何示例