Text property shows in background

edited August 2016 in FastReport 4.0
Hi everybody,

I create a new report and I add a Text component. When I place it in my report, the "popup window" to edit the text shows in background and I can't access it.
When I try to click anywhere, I can hear the "bing" from Windows that there's a windows open. When I press Escape, the "popup window" close. Then I can continue work in my report.

Is there anybody who already had this problem ?

My configuration:
- Windows 7
- Delphi XE3

I just try to re-install my Delphi XE3, but I still got the problem.

Thanks to everybody who read and try to help me.

Comments

  • edited September 2016
    Try to hide and show again dialog form/
    procedure DialogPage1OnShow(Sender: TfrxComponent);
    begin
       DialogPage1.Visible := False;
       DialogPage1.Visible := True;       
    end;
    

Leave a Comment