Jump to content

Search the Community

Showing results for tags 'Fast Report'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 4 results

  1. Hello programmers, I have a problem in Fast Report using Unigui, I can't understand, when I load the report at runtime the data from my dataset is not displayed, but if I do it directly without frxReport1.LoadFromFile(); everything goes well. I'm using Delphi 10.2, UniGui 1.90.0.1530 and Fast Report 6.9.12. The idea is to be able to load my reports at runtime and have the data displayed, I use function TfrDM.GeneraReportePDF(const RepName: string): string; begin try frxRep.PrintOptions.ShowDialog := False; frxRep.ShowProgress := false; frxRep.EngineOptions.SilentMode := True; frxRep.EngineOptions.EnableThreadSafe := True; frxRep.EngineOptions.DestroyForms := False; frxRep.EngineOptions.UseGlobalDataSetList := False; frxRep.LoadFromFile(UniServerModule.FilesFolderPath + RepName + '.fr3'); if frxRep.Version >= '6.0.0' then frxRep.DataSets.Add(frxDSetRecibos); frxPDFExport.Background := True; frxPDFExport.ShowProgress := False; frxPDFExport.ShowDialog := False; frxPDFExport.FileName := UniServerModule.NewCacheFileUrl(False, 'pdf', '', '', Result, True); frxPDFExport.DefaultPath := ''; frxRep.PreviewOptions.AllowEdit := False; frxRep.PrepareReport; frxRep.Export(frxPDFExport); finally end; end; If I comment the line frxRep.LoadFromFile(UniServerModule.FilesFolderPath + RepName + '.fr3'); everything goes well but as I said before the idea is to load report at runtime Can anyone help me? I will be very grateful, thanks..
  2. MOGSY

    FastReport

    Hi I would like to use FastReport, however, it is not working for me. If I try to run the report from the main Form, it opens a blank page. If I place the same report in another form, it shows the form but also create a empty form. Following an example of the code I try to use.I would appreciate your help. frxReport1.ShowProgress := False; frxReport1.PrintOptions.ShowDialog := False; frxReport1.EngineOptions.SilentMode := True; frxReport1.EngineOptions.EnableThreadSafe := True; frxReport1.EngineOptions.DestroyForms := False; frxReport1.EngineOptions.UseGlobalDataSetList := False; frxReport1.ShowReport; Thanks MM
  3. Merhaba Farsah Bey. Benim Sorunum Şudur. Database Module Üzerine Bir Adet FrxReport (FastReport) Bir Adet frxDBDataset (FastReport) Bir Adet frxPDFExport (FastReport) Bir Adet TUniQuery (UniDAC Query Component) Database Module unigui üzerinden oluşturdum. Program içerisindeki Diğer Herhangi bir Formdan Bir Rapor aldığımda Sıkıntısız olarak Raporu Dökmektedir. Vermiş Olduğum Kıstaslara göre Rapor Düzgün olarak gelmektedir. Farklı Bir Session da ve Farklı Bir PC de Rapor almaya çalıştığım zaman Raporu ilk açan sessionda hangi rapor alınmış ise bu Raporu Diğer Ekrana çıkartmaktadır. Bu Konuda Yardımlarınızı beklemekteyim Kullanmış olduğum Kodu Aşağıda Gönderiyorum iyi çalışmalar dilerim. s := UniMainModule.sPath+'files/EXTRE_'+UniSession.SessionID+'.fr3'; DB.frxReport1.PrintOptions.ShowDialog := False; DB.frxReport1.ShowProgress:=false; DB.frxReport1.EngineOptions.SilentMode:=True; DB.frxReport1.EngineOptions.EnableThreadSafe := True; DB.frxReport1.EngineOptions.DestroyForms := False; DB.frxPDFExport1.Creator := ''; DB.frxPDFExport1.Title := 'Cari Hesap Extresi'; DB.frxPDFExport1.Author := 'MiraERP'; DB.frxPDFExport1.Subject := LBLKODU.Caption + ' ' + LBLADI.Caption; DB.frxPDFExport1.Background:=True; DB.frxPDFExport1.ShowProgress:=False; DB.frxPDFExport1.ShowDialog:=False; DB.frxPDFExport1.FileName := UniServerModule.NewCacheFileUrl(False, 'pdf', '', '', PDF); DB.frxPDFExport1.DefaultPath := ''; DB.frxReport1.PreviewOptions.AllowEdit:=False; DB.frxReport1.LoadFromFile(s); DB.frxReport1.PrepareReport(); DB.frxReport1.Export(DB.frxPDFExport1); FReport.FileName := DB.frxPDFExport1.FileName; FReport.UniURLFrame1.URL := PDF; FReport.UniURLFrame1.Refresh; FReport.Show;
  4. Merhaba; Çıktı işlemleri için kullanıcıların kendi dizaynlarını kendilerinin yapıp kaydetmeleri istiyorum böyle bir şey mümkün mü? Fast Report ile neler yapılabilir bu konuda Demo göremedim, daha önce çalışma yapan varsa bir örnek paylaşırsa sevinirim. Saygılarımla İyi çalışmalar.
×
×
  • Create New...