Search found 20 matches: frprn

Return to advanced search

Send mail from fastreport

I am sending mail from Fastreport so that the "Export to PDF" dialog does not open. When executing the command FrPrn:DoExport("PDFExport"), the report disappears from the screen and Outlook opens. As long as Outlook is open, the report is not visible on the screen. ...
by mtajkov
Sun Nov 26, 2023 3:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send mail from fastreport
Replies: 1
Views: 300

Re: FASTREPORT - MAILExport

... Would there be a way to do something similar to generate a spreadsheet in Excel, not using the Fast routine for that, but using My ex routine: FrPrn:SetProperty("XLSExport", "OpenExcelAfterExport" , .F.) // Abrir o excel FrPrn:SetEventHandler("XLSExport","OnSendXls",{|ParamsArray|MySendXls(FrPrn,cPdfFile)})
by marca
Tue May 23, 2023 6:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FASTREPORT - MAILExport
Replies: 3
Views: 1108

Re: fast report 4

Frh is fast report 4 for fwh version, The author Spirin Sergey left the world in 2012.
Frh provide a class prg as wrap of fast report 4 , and call designer easily as FrPrn:designReport() .
Shuming Wang
by ShumingWang
Mon Nov 21, 2016 6:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: fast report 4
Replies: 1
Views: 562

Re: Fast Report: how to load and preview a fp3 file

Thank you Armando. I had solved this way:

FrPrn := frReportManager():new()
FrPrn:LoadFPFile("test.fp3")
FrPrn:ShowPreparedReport()
FrPrn:DestroyFR()
return nil

nb. the fp3 file need to be saved using SaveToFpFile method.
by Marco Turco
Sat May 24, 2014 6:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fast Report: how to load and preview a fp3 file
Replies: 3
Views: 688

Fast Report: how to load and preview a fp3 file

... but the error "Cannot find class prepared report appear". Any ideas ? #include 'fivewin.ch' #include 'FastRepH.CH' function Main() local FrPrn FrPrn := frReportManager():new() FrPrn:LoadFromFile("test.fp3") FrPrn:ShowPreparedReport() FrPrn:DestroyFR() return nil
by Marco Turco
Sat May 24, 2014 5:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fast Report: how to load and preview a fp3 file
Replies: 3
Views: 688

Re: FastReport LoadImageFromHbVar

... end; begin end. // " picture1" is the name of the picture object, can be edited in the left tribution table . 2.3) prg : private fr3img FrPrn := frReportManager():new() 2.4 prg: FUNCTION fr3img(file1) fr3img:=nil fr3img:=memoread(file1) sysrefresh() return
by ShumingWang
Thu Apr 17, 2014 4:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport LoadImageFromHbVar
Replies: 8
Views: 1441

Re: FastReport, variables from PRG in FR3 file

function test()
local FrPrn
private cmyvar
cmyvar:="aaaa"
FrPrn := frReportManager():new()
frprn:designReport()
FrPrn:DestroyFR()
return

// fr3 design ,add a text cell (A) , [getHBvar('cmyvar')]

preview result: aaaa
by ShumingWang
Tue Apr 15, 2014 4:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport, variables from PRG in FR3 file
Replies: 17
Views: 4106

Fastreport ,How to onafterprint runs a "dbskip"

Hi, Table: itemid qty 001 1.1 002 2.1 003 3.1 004 4.1 ... FrPrn:SetUserDataSet("masterdata",'itemid;qty'},; {|| odbprn2:GoTop()} ,; {|| odbprn2:SKIP(1)},; {|| odbprn2:SKIP(-1) },; {|| odbprn2:EOF() },; {|aField|odbprn2:FIELDGET(afield)}) end ...
by ShumingWang
Tue Jan 21, 2014 9:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fastreport ,How to onafterprint runs a "dbskip"
Replies: 0
Views: 334

FastReport: PDF export

... (spirin class) for my FWH apps. I need to provide my customers a function to export in PDF just some pages of the report. I know the method FrPrn:SetProperty("RTFExport","FileName",cfile) but it exports all the report, not single pages. Any ideas ? Thanks in advance.
by Marco Turco
Mon Sep 16, 2013 3:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport: PDF export
Replies: 7
Views: 1526

Re: Bitmap + binary

... just a vector or a matrix of various vectors? and how to add'll call this bitmap? The function that I have to add a Bitmap to FastReport is this: FrPrn: AddPicture ("ReportTitle1", "Name", "C: \ test.bmp", 20, 20, 200, 200) / / ( Mirror: AddPicture (cParent, cName, ...
by arthursilvestre
Thu Aug 08, 2013 12:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bitmap + binary
Replies: 19
Views: 3662

Re: Need examples of FW Report Engine with TDolphine -MySQL

... if odbprn1<>nil odbprn1:end() end if odbprn2<>nil odbprn2:end() end end return 2. FUNCTION fr3prn(odbprn1,odbprn2,cid1,lpreview) local FrPrn,odbprn0,odbprn13 local cid2,acompany1:={},n1:=1 FrPrn := frReportManager():new() FrPrn:LoadLangRes("chinese.xml") odbprn0:=oserver:query("select ...
by ShumingWang
Sat Apr 20, 2013 7:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need examples of FW Report Engine with TDolphine -MySQL
Replies: 3
Views: 975

Re: Please sample with Fast Report

Hi Silvio, FrPrn := frReportManager():new() FrPrn:SetTitle("TEST") FrPrn:SetWorkArea("CTEINUT", Select("CTEINUT")) // here you put your database FrPrn:SetResyncPair("CTEINUT") FrPrn:LoadFromFile("PROG220G.FR3") ...
by Wanderson
Sat Nov 03, 2012 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Please sample with Fast Report
Replies: 4
Views: 819

FASTREPORT.. INSERTAR IMAGENES

... haciendo pero no funciona, alguna idea, ya tengo creado el objeto en FR como picture1, pero no aparece nada img:="c:\Fotos\image.jpg" FrPrn:=FrReportManager():New("FRSysth.dll") ... FrPrn:AddVariable("MisVariables","Imagen","'"+img+"'")
by elmoiquique
Tue Nov 01, 2011 11:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FASTREPORT.. INSERTAR IMAGENES
Replies: 6
Views: 1854

Re: Ejecutar pagina en FASTREPORT

Esta fue la repuesta de Spirin Sergey

FrPrn:SetProperty("GroupHeader1", "Condition", "my condition")

Lo anterior permite cambiar las condiciones del grupo
by albertofernandezm
Sat Aug 14, 2010 7:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejecutar pagina en FASTREPORT
Replies: 1
Views: 471

FastReport,The most best report engine for FWH,Harbour!

... prepare your databse datas often as dbf alias, tmysql self defined data, Others only need is to design froms as xx.fr3 file ! examples: in prg : FrPrn := frReportManager():new() FrPrn:LoadLangRes("chinese.xml") odbprn0:=oserver:query("select * from ...") odbprn1:=oserver:query("select ...
by ShumingWang
Sat Aug 07, 2010 7:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport,The most best report engine for FWH,Harbour!
Replies: 4
Views: 2175
Next

Return to advanced search