Jump to content

Recommended Posts

Posted

s.a.

fastreport ile oluşturduğumuz pdf dosyasını daha sonraki kullanıcı aynı raporu açtığında bir önceki rapora ait veriler basılıyor.yada rapor silinmiyor. bu konuda çok şikayet almaya başladım.kullanıcılar hep başkasının raporlarını aldıklarından şikayet ediyorlar. yardımcı olursanız sevinirim. kolay gelsin.

  • Administrators
Posted

Eğer dosya içeriği her seferinde değişiyorsa dosyayı benzersiz bir isimle aşağıdaki klasöre kaydedip:

UniServerModule.LocalCachePath

Aşağıdaki linki vermeniz lazım:

UniServerModule.LocalCacheURL + DosyaAdi
Posted
Merhaba Ben aşağıdaki gibi kullanıyorum pdf export işlemlerinde ve şu ana kadar hiç sıkıntı yaşamadım
 
        LoadFromFile(FileName);
        PrepareReport(True);
        pdfFl:='servicelist_'+FormatDateTime('YYMMDDhhmmnnss',now)+'.pdf';
 
        UniServerModule.frxPDFExport1.FileName :=UniServerModule.LocalCachePath+pdfFl;
        UniServerModule.frxReport.Export(UniServerModule.frxPDFExport1);
 
        s := UniServerModule.LocalCacheURL;
        s := StringReplace(s,'\','/',[rfReplaceAll]);
 
        Frm_ReportView.Fl:=s+pdfFl;
        Frm_ReportView.ShowModal;
 

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...