QAxObject *document = documents->querySubObject("Open(const QString&, bool)", inFile1, true);
QAxObject *selection = axObject.querySubObject("Selection");
...
document->dynamicCall("SaveAs(const QString&)", outFile);
document->dynamicCall("Close()");
I'm not talking about these Qt functions querySubObject
, dynamicCall
. I'm talking about the Word / ActiveX functions Open
, SaveAs
, Close
...
I only can glimpse a small part of these functions in some example code fragment. Where can I find the full document?
It seems ms-word functions, but considering Open(const QString&, bool)
, there's QString
, that dispels the idea.