Default Avatar

boakoms

boakoms

About

Username
boakoms
Joined
Visits
21
Last Active
Roles
Members

Comments

  • hello, you can arrange this via databand properties (column, columngap, columwidth). regards.
  • As it seems, if you dont check 'prinf if detail data is empty' option, if the detail data is not returning data, master data goes invisible. i checked it and it is ok now.
  • hello, i am not sure but i dont think you can. if you select printing method in design by Dublex property of Page it is already decided if its printing dublex or simplex. if you select printing method in print dialog you cant add page after that. re…
  • Hello, not sure if its going to work but you can try : Create 2 Page Page1 Group Header Master Data (which shown full page) Page 2 Master Data Detail Data Wahtever Data you want Group Footer Regards. Danzerg wrote: » I gu…
  • Hello, If you convert data time to text (i tested in FR ) i suppose FR cant handle it as DateTime. To workaround you can try : convert(nvarchar(50),yourdatahere,108) for time only and convert(nvarchar(50),yourdatahere,103) for the date onl…
  • Hello, I use getdate() to generate date and time data and use dd.mm.yyyy hh:mm as Display Format, it looks ok to me. What do you mean another format, can you share it ? Regards. Martijn Tonies wrote: » Hi, With a SysMemoView, I can't s…
  • Hello, I am sorry i forgot to tell you change the SubReport height to 0. If its empty there will be no blank, and if its not empty it works as it should be. Regards, boakoms. Martijn Tonies wrote: » Hi, I've set the Header band to 'St…
  • Hello, If you dont have to set every field on same height you can use below workaround : Set fields strech option on then change fields height 0. Same settings for bands too. If no data on subreports there should not be a blank. regards. …
  • Hello, I dont understand what problem you got with the subreport but for the design : There is an option in Page Settings > Other Settings > Large Height in Design Mode. Check it and you see the magic happening [img]style_emoticons/&l…
  • Hello, You can place a picture of watermark in report and use 'send it back' option to have a watermark effect. Regards. FAlvarado wrote: » Hi All! Besides these methods: https://www.fast-report.com/en/forum/index....art=#entry36961 i…
  • Hello, I cant comment since you are using custom Component but in Fast Report there are options under the drawing options. You can see ss attached. Regards. Samuel Smith wrote: » I have a custom Component that is a descendant of the TfrxL…
  • Hello, Did you mean low quality or small image by thumbnail ? I am also using 6.3.1 and tried what you said but everything is look ok. Regards. gfu wrote: » We recently updated from VCL 6.2.16 to 6.3.1. The issue is present in the lates…
  • Topic can be closed, it was a user mistake. boakoms wrote: » Hello, We just update from FR 5 to FR v6.3.1 and it seems there is a problem with the DateTime data. For example i have field Date format, which is 18.02.2019. Whatever display …
  • Hello Markus, As far as i know, page header repeat itself on every page generated. For example if you have a 1 paged design with the page header, header will placed on every page that report generated. If you have design with 3 pages, you need …
  • Hello, Make sure that subreport is in masterdata band. Regards. egroups wrote: » Sorry,this is fr3. egroups wrote: » Hello, could you attach fr3 file too. Regards.
  • Hello, i just correct your syntax, dont know the reason why type mismatch. Regards. Principiante wrote: » so it gives me error: DetailData1.RowCount:= STrToInt(); attached error Principiante wrote: » Hello, it should be like…
  • Hello, could you attach fr3 file too. Regards. egroups wrote: » Bingo, many thanks for your help. But I have last problem. Why last detail after last Master line is doubled? egroups wrote: » Hello, You need to set TabulkaPolo…
  • Hello, You need to set TabulkaPolozkaReportDS Master Source propert to TabulkaReportDS. like you did before : lDetailDataset.MasterSource:=lMasterDataSource; Regards. egroups wrote: » Thanks for tip. I removed footer for Master and ad…
  • Hello, I use attached structure to get result like in the picture. Regards. egroups wrote: » I modified generator adding Footer for TabulkaMasterData but result stil print DetailData only last row TabulkaMasterData:( And TabulkaMasterDat…
  • Hello, it should be like DetailData1.RowCount:= Regards. Principiante wrote: » Principiante wrote: » Add DetailData band to the report. Set DetailData.RowCount = 1 (this is necessary!) Set DetailData.RowCount := MasterData1OnBefore…
  • Hello, Then you need to place Footer after Master Data and select Print Footer After Each Row (or something like that ) in Master Data Options. Regards. egroups wrote: » Hello, Yes this I need. egroups wrote: » Hello, Do you ne…
  • Hello, Do you need data to be like in the attached picture ? Regards, egroups wrote: » I create complete report at runtime via ManualBuild. I have 2 memory datasets with Master and Detail (XML attached). Each item in MasterData can ha…
  • hello, you can try to use report footer. regards. Santiago wrote: » Santiago wrote: » why do you need report summary ? maybe we can find way around to do what you need ? In ReportSummary the total value of the purchase is pl…
  • why do you need report summary ? maybe we can find way around to do what you need ? Santiago wrote: » Good Morning. I have a report that uses PageFooter on all its pages, except the last one. On the last page you have to go to a ReportSumm…
  • Hello Leo, You can use Dialog Page to user select what he wants to see on report. For that go to File > New Dialog Page. In dialog page you can use controls to user select what he wants to print on the report. For example you can use com…
  • Hello, You can use code like below : IF ( <> '' and <> '') THEN BEGIN page1.visible:=true; page2.visible:=true; END ELSE IF ( <> '') THEN BEGIN page1.visible:=true; page2.visible:=false; END ELSE IF ( <>…
  • hello, can you check richview sterch option. if its 'strech to max height' then change it to strech. also i am confused about one point (in design mode) which is Positionsdaten.beschreibung shouldnt be seen like that cause the rich view height…
  • hello, glad that it work for you. OnStartReport is ideal for this cause. regards. peeragehype wrote: » Hi Thanks this works fine I have placed the code in the OnStartReport event Is this the best place? Mike peeragehype wrote…
  • hello, if the problem cause of memoview try wordwrap option, it may work. if the problem cause of rich view try wyiwyg option off and try. if both are wont work, can you add picture of the fault page break to the reply, so we can understand f…
  • IF (your certain siutaions true) THEN BEGIN page2.visible:=true; END ELSE BEGIN page2.visible:=false; END; will do the trick but if you explain your conditions we could figure out more suitable way i guess. peeragehype wrote: » I …