Default Avatar

jdredd

jdredd

About

Username
jdredd
Joined
Visits
54
Last Active
Roles
Members

Comments

  • Maybe work around for this is to NOT use the FR dialog ? ... possibly just a design problem of FR dialog box of how this is just all handled when it comes to trays. I want to be able to pre-set to a tray. I want it to show the printer dialog t…
  • I did ... and printer dialog shows other wise... BUT If I use delphi's TPrinterSetupDialog to show it ... it works. So its like FastReports is whipping out my settings? Included is another video that shows how it works in the TPrinterSet…
  • This seems to work well, vs using the code I had found. Getting the bin names, Id's and such. The only thing I have to question if possible, is setting the printer bin BEFORE fastreports shows the printer dialog box. So I can pre-set it to Tra…
  • gpi wrote: » See ticket #422856 gpi wrote: » Use uses frxPrinter; frxPrinters.Printer.Bins to access all bins' list frxPrinters.Printer.BinNameToNumber(frxPrinters.Printer.Bins[0]) will get first bin number My hero ... I'l…
  • procedure TForm37.frxReport1PrintPage(Page: TfrxReportPage; CopyNo: Integer); begin Page.Bin := 2; Page.BinOtherPages := 2; end; If I do this ... this works.. came out of tray 2 finally. One problem here with the device i am testing agains…
  • Found this @ http://delphi-kb.blogspot.com/2011/03/how-...-for-paper.html Has a call called GetBinnames It shows me the names of the bin ... modified it a bit to get name and number value Brother HL-6180DW series Auto Select - 7 Tray…
  • Found this example @ http://www.swissdelphicenter.com/en/showcode.php?id=796 Returned nothing. Found another example @ https://www.experts-exchange.com/questions/...nter-trays.html Which it returned u=7 a=1 T=258 a=4 Which to me.…
  • gpi wrote: » You may set TfrxReportPage.Bin and TfrxReportPage.BinOtherPages before preparing of report on in the TfrxReport.OnPrintPage event ok so there is 2 properties to set .... but how do I programmatically get the available bins? …
  • gpi wrote: » Set tray in the page's setup window in the FR Designer I have this running on thousands of machines over maybe 600 locations across the country. All different. So setting a tray in the designer, wouldn't that be an issue …
  • gpi wrote: » gpi wrote: » I can have a string of delimited data.... GUIDS in this case. So for example 5 of them. I want to create 5 master bands. Each band represents a stored procedure call / Query ... "Call MyProc(GUIDString)" Yo…
  • Paul Michael wrote: » I have had similar problems with Citrix environments. Sometimes dialogs would disappear. After extensive logging we narrowed it down to Citrix being the one doing the hiding. You mentioned terminals and I was thinking perhaps…
  • LurkingKiwi wrote: » It is also possible that the dialog is opening off-screen for some reason. Are the problem machines dual-screen setups or laptops which sometimes have a second screen? I suggest that the following is tried when it occurs, …
  • Polomint wrote: » Polomint wrote: » I gave the ability to show printer dialog during report printing Some complain the Dialog is getting lost behind the program, and end up just end tasking it. Curious, we too have latest FR(Standard 5…
  • LurkingKiwi wrote: » When you say that you are using "code", is this Delphi code (locating report objects and tweaking them) or script in the report? I have used OnBeforePrint handlers in script to make adjustments to memo sizes and visibility, o…
  • thefreecat wrote: » As I understand it, you want to make kind of "groups" of memos ? Have you thought of subreports on a single record (rbCurrent -> rbCurrent) ? Haven't tried subreport stuff yet... Maybe have to check it out if there ar…
  • Anyone have better input on this? The reports I have (multiples) all need stuff to move around and adjust for different people. Since we have a few hundred locations running this in 2 or 3 countries we need to be flexible. The base core of its …
  • Fix was.. just remove frxpngimage from the uses....
  • Any cure for this? I am having this problem with v5. edit: Turning embeddedfont on, seemed to cure the issue.
  • Bump... No one runs into such issue? Is my design setup wrong? I'd like one report that just kinda morphs depending on some settings... just doesnt seem like fastreports supports such things.
  • Bump.. No one uses Stored Procs I take it?
  • frxPDFExport.Compressed := false; Does that change anything?