This gets more interesting.
As mentioned above, openURL will not open the pdf file.
I just confirmed the same issue with openDocument.
However, tProcess does work.
Any thoughts?
app built with: 0.9.31-36282, 2.6.1, win32-vista
works on my win32-vista and my win7-64, but not on my customers win7-64 system.
AProcess := TProcess.Create(nil);
sLocalFN := 'explorer.exe ' + DocFullFN;
AProcess.CommandLine := sLocalFN;
AProcess.Options := AProcess.Options + [poWaitOnExit];
AProcess.Execute;
AProcess.Free;
Case FileExists(DocFullFN) of
True : openDocument(DocFullFN);
False: ShowMessage('Document: ' + DocFullFN + ' not found');
end;