FastReport and MDI form!
Hello,
I have problem when my form is MDI and run FastReport report. When on my screen get a message "Preparing page...." and then I click to close form get a error "Access denide......".
Can I disable parent form when FastReport processing? And how to that?
Thanks in advance.
I have problem when my form is MDI and run FastReport report. When on my screen get a message "Preparing page...." and then I click to close form get a error "Access denide......".
Can I disable parent form when FastReport processing? And how to that?
Thanks in advance.
Comments
From main menu of application I call new form:
If Not Assigned( Form59 ) Then
Application.CreateForm(TForm59, Form59);
Form59.Show;
The form opened as MDIChild!
Then I prepare report and show it:
Form59.frxReport1.Clear;
Form59.frxReport1.LoadFromFile( 'test.fr3' );
Form59.frxReport1.ShowReport( True );
(OldStyleProgress = True)
When fastreport progress window show I close the MDIChild window and get a error: "Access violation at address 0000000E. Read of address 0000000E.".
Can I freeze or disable all windows in my application when Fastreport progress is runing?
Thanks.