jdredd
jdredd
About
- Username
- jdredd
- Joined
- Visits
- 54
- Last Active
- Roles
- Members
Comments
-
frxReport1.ReportOptions.HiddenPassword := 'xxx'; I think this is all that is needed it appears.
-
This possibly related to this log maybe? https://quality.embarcadero.com/projects/RSP/issues/RSP-35516
-
To bad this forum is dead :(
-
Basically has anyone done something like this? Anything out there to see and/or use? Any ideas how to deal with some of the preview UI deals I can't figure out...
-
This is probably more of a Steema issue than FastReports. I've had a number of goofy issues with the Steema installer over the years and odd things happening.
-
FYI I am getting this problem alot via a program that calls mine to print from a Session 0 in Windows 10. If I run the same deal logged in, it works fine. If ran from Session 0 , I noticed ALOT of variant conversion errors. Possibly somethi…
-
Polomint wrote: » It may not serve your purpose, but we have about ten Chart-type reports where the User wants to be able on occasion to use Excel or similar for post-processing. The way we addressed this was to add our own button to export the…
-
jdredd wrote: » Using 6.1.13 with Tokyo 10.2.3 I have a request to make a new report but with ability to export to XLS. Report is pretty simple, run query, spit out results. Nothing fancy. Issue is I can't seem to export to XLS / XLSL / E…
-
Any input? Would LOVE to be able to convert years and years and years worth of reports vs having someone manually rewrite every single report.
-
http://www.fast-report.com/en/forum/?p=/discussion/11556 I found your post here, which this download actually kind of works. It at least brings up something, to select the needed DLL files. I did so, and it let me attempt to convert an RPT…
-
gpi wrote: » No any changes. CR to FR converter needs CR's dlls which included in the VS 2005 which exact DLLs are these? do they need copied to same folder as the converter? I have the tools to edit/create Crystal reports. Are the DLLs …
-
gpi wrote: » You can't to do this in the script Can live with out it for now I guess ... but wonder if that could be a future enhancement? In our VCL program that uses the reports, most places in the program we use enter stroke as a tab …
-
gpi wrote: » gpi wrote: » We tried this out and program crashes instantly. SAP Crystal Reports installed is 14.0.4.738 RTM There is no real documentation about this tool at all. Any ideas? This convertor works with CR which inclu…
-
Polomint wrote: » I have no personal experience of doing this, but the FastReport FAQs suggest you can (if you have Crystal Reports installed). Is there a convertor for ... ? There is a curiously named link there to "Donwload" the tool. [i…
-
Polomint wrote: » Have you considered upgrading to FRv6.0? Select and Copy "happened" during the Beta Testing [img]style_emoticons/<#EMO_DIR#>/cool.gif" style="vertical-align:middle" emoid="B)" border="0" alt="cool.gif" /> Cheers, Pa…
-
Polomint wrote: » In the Report definition, what are the property values for - KeepChild - KeepFooter - KeepHeader - KeepTogether on the GroupHeader(s) and MasterData bands? I must admit I struggle with this and have had reports with orp…
-
This worked well. I modified all the fields that need the "HideZeros" I have a dialog at the start of the report to put in date ranges and few other things a user must do before kicking off report. I added a checkbox for ability to hide the…
-
gpi wrote: » TfrxMemoView.HideZeros = True Ah dang it! Sitting there in front of me the whole time.... Guess I never paid attention to it as never needed it until someone asked, when I am almost done with the report. Well that is not t…
-
Polomint wrote: » "Judge", what type of footer were you trying to use for this? (PageFooter, GroupFooter, ReportSummary?) We have several reports that seem to do what you want without having to resort to fudges like invisible Data Bands. Do…
-
Only way I could get around this was make a header and data band. Then link a data band that isn't visible to a dummy query to run. Hack job I know. It works, but figured there would be better way of doing this without having a data band to run. …
-
Ok after some schooling.... Two Pass Report Footer I store as hEndPage Variable then on the 2nd pass on my label I want to modify procedure lbl_GrossSalesFrontOfficeInvoicesOnBeforePrint(Sender: TfrxComponent); begin if = hEndPage then…
-
gpi wrote: » See a sample for FRDemo in the attach The demo worked.. but once I tried it in my report, i get the on every page instance.. from first instance to last instance.
-
gpi wrote: » Use TfrxHeader and TfrxFooter bands for masterdata for several records. Get value before header/footer print Tried for about 3 hours today.. still no go. About 15 hrs into this now. Just cant figure out how to make the ver…
-
Still can't get it.... I can get it so a variable is set the first time to store the page # then any page after that just compares its active page # to the one stored. If its greater than, modify the header. I can get it working on the the …
-
gpi wrote: » Try to check current in the TfrxMasterData OnBeforePrint and OnAfterPrint events on the first pass Hmmm ok.... possibly I guess could use a preset variable to store? So first time its set thats the inital page its on... then o…
-
I found I can do this... which requires me to do this on every header. It "worked" but not 100% sure if this is the best way. I would think it would be something in the report designer by now to enable such a feature? procedure  HeaderNetSalesOn…
-
gpi wrote: » Set Page1.LargeDesignHeight to True ooooh ok... i just didn't know how or what to search for to get that to popup in the help doc.. Thanks
-
gpi wrote: » Delphi: var BMP: TBitmap; begin     BMP:=TBitmap.Create;     BMP.LoadFromFile('Test.bmp');     frxReport1.Script.Variables['pBMP']:=integer(BMP);     frxReport1.ShowReport();     BMP.Free; end; script: proc…
-
Progress .... using the Delphi printer dialog box ... I can set the printer driver to a desired printer tray.... (if user decides) Show the printer dialog box. Get the printer bin selected ... as user might have changed it... Store it a…
-
Nope... using the Delphi printer dialog didn't work either ... The tray settings get set.. But when frx report print call is done, it ignores it. Assuming it wipes the driver settings back to a default. I can programatically set this all, but …