stewag25
stewag25
About
- Username
- stewag25
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
thanks gpi but this way I will not only omitt export- but also "save as" dialog. Is there a way to just omitt export dialog?
-
gpi wrote: » Try           if TfrxPreviewForm(frxReport1.PreviewForm).RightMenu.Items[i].Caption=TfrxPreviewForm(frxReport1.PreviewForm).ExportB.Hint then comment: This code work when 'ExportB.' is omitted
-
MasterData1.PrintIfDetailEmpty = True works, thank you. How can I set a Master-Detail link between datasets?
-
gpi wrote: » Reopen detail dataset in the master's OnAfterScroll event on the Delphi's level @gpi: well THAT is a good idea, let's see... ... WORKED. Thank you!
-
I have the same problem. I guess gordk means to buid a left outer join query but to me that seems against the logic of a sub-band. I have a table with articles and a table of article-photos. There can be several photos to one article. So If I b…
-
Child1.PrintChildIfInvisible = True solved my problem. Thank you very much!
-
Thanks for your advices but they do not adress my problem. The two child bands shall be independent from each other. That means that the user should be able to activate child band 1 or band 2 or also both. When I set Child2 as child of Child1, C…
-
-
... thanks gpi. When I put: wrote: var HideChild1: TfrxVariable; in Delphi, I get an "undefinied identifier" error. Do I need to add a library to uses? It seems as if i don't declare HideChild1 variable I get an undefined iden…
-
I figured out that is DOES work when standing alone. In order not to show a blank child band if the only contained field is empty though, I use this code in OnBeforePrint: wrote: if = '' then Child1.visible := false else Child1.visible := t…
-
Thank you!
-
Solved: The display property in dataset's field-editor was shorter then the field in the table! Stupid me
-
gpi wrote: » Attach report template (fr3) and prepared report (fp3) Please find .fr3 and screenshot ("Winter-Spezialkleidung" cut off) attached. Any clue?
-
thanks gordk but how do I store the blob to stream first so that I can later import it to FrxPictureview? I know how to do it in Delphi but I need to do it in FR OnBeforePrint event where var stream: TStream; stream := .CreateBlobStream(qPicture…