ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 Error reported when using the ImportPagesIntoPDF function alone

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
foxdingding Posted - May 29 2024 : 02:30:35
Is Error:

  Try
      if Not ImportPagesIntoPDF(H_FileName_Out_PDF,H_FileName_In_PDF,H_ArrPage) Then
      Begin
          Writeln('--error 001!'+H_FileName_Out_PDF);
          Exit;
      End;
  Except
      on E: Exception do
        Writeln('---Error 002',E.Message);
  End;


===============================================

Is OK:

  Var pdf := TIEPDFBuilder.Create();
  Try
    pdf.SaveToFile(H_FileName_Out_PDF);
  Finally
    pdf.Free();
  End;

  Try
      if Not ImportPagesIntoPDF(H_FileName_Out_PDF,H_FileName_In_PDF,H_ArrPage) Then
      Begin
          Writeln('--Error(001)'+H_FileName_Out_PDF);
          Exit;
      End;
  Except
      on E: Exception do
        Writeln('---Errror 002',E.Message);
  End;

4   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - May 30 2024 : 18:40:50
Hi

You can email me for the latest version if your registration is current.

Nigel
Xequte Software
www.imageen.com
foxdingding Posted - May 30 2024 : 03:43:34
13.1.0
xequte Posted - May 29 2024 : 23:33:21
Hi

In the current beta, you can specify a file that does not exist, and it will be automatically created. You can email me for that version.



Nigel
Xequte Software
www.imageen.com
xequte Posted - May 29 2024 : 04:27:49
That is correct. Both files must exist for ImportPagesIntoPDF()

Nigel
Xequte Software
www.imageen.com