Hi!
I'm using a C program to open PDF files with this code:
ShellExecute(GetDesktopWindow(), "open", "c:\\someFolder\\myFile.pdf", NULL, NULL, SW_SHOWNORMAL);
Now I need to go furthrer; I need to open the PDF file at a certain page. I've tried
"c:\\someFolder\\myFile.pdf#page=5"...
...as is suggested in Adobe's docs, but this does not work.
Any hints?