DialogPage after page Showing !

edited 12:44PM in FastReport 3.0
Hi all

How i can show a DialogPage used a MemoOnPreviewClick!!!!

I mean i want to show the DialogPage just when i click a Memo on the report.

Thanx.



Comments

  • edited 12:44PM
    Set DialogPage.Visible propery to false and in script code:

    procedure Memo1OnPreviewClick(Sender: TfrxView; Button: TMouseButton; Shift: Integer; var Modified: Boolean);
    begin
    DialogPage1.ShowModal;
    end;

Leave a Comment