Jaws printing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using Jaws to print a selection I used this simple example

Range("F7:I16").Select
Selection.PrintOut Copies:=1, Collate:=True, _
PrintToFile:=True, PrToFileName:="C:\Documents and
Settings\David\My Documents\Portfolio Tools\Temp\OB1.pdf"

It all works till i open the file and get this error
message:

"Acrobat could not open 'OB1.pdf'because it is either not
a supported file type or because the file has been
corrupted" etc

Can anyone help with this problem. Thanks

David
 
1) What is Jaws?

2) Just by giving a document a pdf extension does not make it a true pdf file.
You need a pdf writer application or driver -- ie Adobe full license or one of
the free pdf creators

go to www.google.com and search for free pdf


:
: Using Jaws to print a selection I used this simple example
:
: Range("F7:I16").Select
: Selection.PrintOut Copies:=1, Collate:=True, _
: PrintToFile:=True, PrToFileName:="C:\Documents and
: Settings\David\My Documents\Portfolio Tools\Temp\OB1.pdf"
:
: It all works till i open the file and get this error
: message:
:
: "Acrobat could not open 'OB1.pdf'because it is either not
: a supported file type or because the file has been
: corrupted" etc
:
: Can anyone help with this problem. Thanks
:
: David
:
 
Back
Top