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
 The PageIndex of TIEPdfViewer has a bug

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 - Nov 22 2025 : 21:53:50


procedure TForm25.DoPage(H_Pdf:TIEPdfViewer);
Begin
   Self.Caption:='--Load--';
   H_Pdf.LoadFromFile('C:\Temp\IenBug\UniGUI.pdf');
   For Var I:=0 to H_Pdf.PageCount-1 do
       H_Pdf.PageIndex:=I;
   Self.Caption:='--OK--';
End;

procedure TForm25.BitBtn1Click(Sender: TObject);
begin
    Var ien:=TImageEnView.Create(Nil);
    Try
        ien.PdfViewer.Enabled := True;

        DoPage(ien.PdfViewer);//is OK#65281;
    Finally
       ien.Free;
    End;
end;

procedure TForm25.BitBtn2Click(Sender: TObject);
begin
    Var PdfViewer:=TIEPdfViewer.Create();
    Try
        DoPage(PdfViewer);//Bug  H_Pdf.PageIndex:=I;
    Finally
       PdfViewer.Free;
    End;
end;
2   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Nov 23 2025 : 21:59:05
Hi

Thank you for the report. Please email me for the latest beta which fixes this.


Nigel
Xequte Software
www.imageen.com
foxdingding Posted - Nov 22 2025 : 21:57:38
64Bit
Delphi 13
IEN=V14.2.7