View PDF File in screen
View PDF File in screen
(OP)
Hello everybody
Is there a way to View a PDF File in screen like images?
Is there a way to View a PDF File in screen like images?
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you a
Computer / IT professional? Join Tek-Tips Forums!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
|
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: View PDF File in screen
Check FileExplorer from www.capesoft.com.
The other option is to create an OLE Control, link in the Adobe Reader Control and play around with it to get it to work. Google for more info on this. But to start you off, below is the code to print a PDF in a OLE Control ::
! Create OCX to print PDF files
?OLEControl{PROP:Create} = '{{CA8A9780-280D-11CF-A24D-444553540000}'
! Load the file
?OleControl{'LoadFile(' & LP:PDFFileName & ')'}
! Print the item using printAll - See OLE2View for TLB for PDF
?OleControl{'printAll()'}
Regards
RE: View PDF File in screen