Problems with FastReports 4.9
Hi,
fist sorry me with by bad english.
I'm trying to use FR4.9.74 but when I have a double clic in a box, to open the propierties, I can't see the window propierties. It's behind the main window.
Are there somebody to help me?
Thanks a lot!!!!
fist sorry me with by bad english.
I'm trying to use FR4.9.74 but when I have a double clic in a box, to open the propierties, I can't see the window propierties. It's behind the main window.
Are there somebody to help me?
Thanks a lot!!!!
Comments
Hello,
If you have the sources, in frxclass.pas and frxpreviewPages.pas, before each showmodal, add popupparent:=Screen.ActiveForm.
It's a know bug in Delphi.
It will be nice if this can be done in the nex versions.
Best regards
MS
Hello,
I am using fr 4.11.4 in the
unit frxPreviewPages i change in the
procedure DoPrint :
if Report.PrintOptions.ShowDialog then
with TfrxPrintDialog.Create(Application) do
begin
AReport := Report;
ADuplexMode := DuplexMode;
PopupParent:=Screen.ActiveForm;//marc
ShowModal;
in the unit frxClass :
procedure Initialize :
FForm.PopupParent:=Screen.ActiveForm;//marc
in the procedure CheckPassword
PopupParent:=Screen.ActiveForm;//marc;
in the procedure InheritFromTemplate
with TfrxInheritErrorForm.Create(nil) do
begin
PopupParent:=Screen.ActiveForm;//marc;
in the procedure ShowPreparedReport
with TfrxPreviewForm(FPreviewForm) do
begin
PopupParent:=Screen.ActiveForm;
if FPreviewOptions.Modal then
begin
PopupParent:=Screen.ActiveForm;//marc;
in the procedure DesignReport
FDesigner.PopupParent:=Screen.ActiveForm;
in the procedure DesignPreviewPage
FDesigner.PopupParent:=Screen.ActiveForm
PopupParent is a property of tform.
Which version of Delphi are you using ?
What do you mean by "when i click in a box ?
Best regards
MS
I'm using Delphi 7.
When I insert, for exemple, a TfrxMemoview in a report, and I want to modify some propierties, I have made a double clic in the MemoView box. Then the window that must be show, remain behind the report window.
Thanks.
Ok, i don't understand. What i explain is to avoid having dialog window behind the modal window.
I have a double clic in a box : what do you mean by box ?
best regards
MS