James Harvey wrote on 2013-10-25: 
>  I added the parameter, but I still cannot open the pdf.
>  
>  It's as though the "scripting.filesystemobject" is somehow not creating a
>  true PDF document?
>  

James,

Perhaps this will do the trick:

   nRead = FOPEN(mNameFile,0)
   IF nRead > 0
      nWrite = FCREATE(mPathFile)
      IF nWrite > 0
         DO WHILE NOT FEOF(nRead)
            FWRITE(nWrite, FREAD(nRead, 1024), 1024)
         ENDDO 
         FCLOSE(nWrite)
      ENDIF 
      FCLOSE(nRead)
   ENDIF


Tracy Pearson
PowerChurch Software


_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/[email protected]
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to