Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
m_ptheApplication = new _Application();
// Attach a Dispatch object with the above created application.
m_ptheApplication->CreateDispatch("Word.Application");
// Get the documents from the currently activated application.
m_theDocuments = m_ptheApplication->GetDocuments();
m_theDoc = m_theDocuments.Open(vFileName,.....);
m_theDoc.GetCreator(); etc etc...