Aug 4, 2002 #1 mirodel Technical User Joined Aug 4, 2002 Messages 7 Location BG Hi, I need a solution to these: when I click on a button on my form a PDF file should open. How could I do that ? 10x !!!
Hi, I need a solution to these: when I click on a button on my form a PDF file should open. How could I do that ? 10x !!!
Aug 4, 2002 Thread starter #2 mirodel Technical User Joined Aug 4, 2002 Messages 7 Location BG I forgot to tell you that I've tried to use ShellExecute but it didn't open the file : ShellExecute(0,nil,'C:\x.pdf',nil,'',sw_show); Upvote 0 Downvote
I forgot to tell you that I've tried to use ShellExecute but it didn't open the file : ShellExecute(0,nil,'C:\x.pdf',nil,'',sw_show);
Aug 4, 2002 #3 mikeEd Programmer Joined Nov 26, 2001 Messages 160 Location GB ShellExecute(nil,PChar('Open'),'C:\x.pdf',nil,'',sw_show); Upvote 0 Downvote