Error PDFInclude error : " pdf_inc.p was not found (293) ".

vinhng

Member
Hello guys.

I used PDFInclude to generate PDF for report, when i compile the source code example " Hello.p" in with Character Client then appear error message : " pdf_inc.p was not found (293) ".
But i have compile this file "pdf_inc.p" before. I compiled my code in windows server 2008.

My example code :

/*===========================================*/

{ config.i }

{ pdf_inc.i "THIS-PROCEDURE"}

RUN pdf_new ("Spdf",cPdfIncludePath + "hello.pdf").
RUN pdf_new_page ("Spdf").

RUN pdf_text ("Spdf", "Hello World!").

RUN pdf_close("Spdf").
IF RETURN-VALUE > '' THEN
MESSAGE RETURN-VALUE
VIEW-AS ALERT-BOX ERROR BUTTONS OK.

/*===========================================*/

My Character Client :


Please help me !.
Thanks for read my question.
 

Cecil

19+ years progress programming and still learning.
Is pdf_inc.p or pdf_inc.r located in your ProPath?
 
Top