I cannot find any documentation on how to open MS Project 2010 files using IStorage::OpenStorage
. I do not know what to pass for the OLECHAR *pwcsName
argument for msproject 2010.
The following code opens an MS Project 2007 file, but fails to open an MS Project 2010 file:
hr = pStorage->OpenStorage(L" 212",NULL,STGM_READ | STGM_SHARE_EXCLUSIVE,
NULL,0,&pAuxStorage);
What do I have to pass for the first parameter to open an MS Project 2010 file?