我使用ShellExecute
打开我的PDF。 Pathname
拥有PDF的URL,而#nameddest=nameddestination
拥有要打开的位置。但是,每次我用ShellExcecute
打开PDF时,它只会打开到第一页,而不是nameddestination
的位置。
CString PathName = _T("file:///C:/Users/Linh.Ly/Documents/TestFile.pdf#nameddest=nameddestination");
ShellExecute(NULL, _T("open"), PathName, NULL, NULL, SW_SHOWNORMAL);