Search found 24 matches: frreportmanager

Return to advanced search

FwH 2307 problema con la ubicacion de archivos

... antes cServer := GetPvProfString("mysql","host" ," " ,"connect.ini" al cargar oFr := frReportManager():New() del FastReport aborte el sistema por el mismo motivo que no ubica sus archivos por que abria q modificar el prg en las partes ...
by CARLOS ATUNCAR
Tue Aug 15, 2023 5:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FwH 2307 problema con la ubicacion de archivos
Replies: 0
Views: 230

Re: FASTREPORT.. INSERTAR IMAGENES

Saludos he provado la solucion pero me da este error

Error description: Warning BASE/1004 Message not found: FRREPORTMANAGER:ADDPICTURE
by CARLOS ATUNCAR
Fri Feb 21, 2020 10:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FASTREPORT.. INSERTAR IMAGENES
Replies: 6
Views: 1840

Ayuda.. Como se pueden Crear nuevas Paginas en FASTREPORT

... le Agregue SETCOPIES(2) tampo realiza la copia de las hojas Aca dejo el programa a ver si alguien me ayuda GRACIAS FUNCTION PRINT202() LOCAL oPrn:=frreportmanager():new("FRSysth.dll") PRIVATE lshowCustname:=.f. oPrn:loadlangres("\MLCONTA\config\spanish.xml") oprn:loadfromfile("\MLCONTA\config\listado\List202.fr3") ...
by elmoiquique
Mon Jul 11, 2016 11:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda.. Como se pueden Crear nuevas Paginas en FASTREPORT
Replies: 6
Views: 1305

tAds 2.1b

... * Novos Methods - Method DataLoadToFR(f_oFastRep,f_cTituloGrupo) > Parametriza Grupos e Variaveis para o objeto FastReport Exemplo: oFastRep := frReportManager():new() oFastRep:SetIcon(1) oFastRep:ClearDataSets() oFastRep:LoadLangRes( "brazil.frc") oFastRep:SetTitle( "Dados do ...
by Giovany Vecchi
Sun Sep 14, 2014 11:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: tAds 2.1b
Replies: 0
Views: 336

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

... 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. // " 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: 1434

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: 4105

Re: FastReport Error: Workspace not used.

... increment the number and try again. You should also check to make sure the file is opened. You should be doing this before calling the report (frreportmanager()). You can write the result to a log file so you can look at it after the error occurs. if ! used()   // write to log fileelse  ...
by James Bott
Mon Jan 27, 2014 5:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport Error: Workspace not used.
Replies: 6
Views: 1072

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

... 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 rtrim(ccompany) ccompany,rtrim(ecompany) ecompany,rtrim(addra) ...
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: 974

Re: Fastreport y PDF sin pasar por un PREVIEW

... // //////////////////////////////////////////////////////////////////////// METHOD SetProperty(sObjectName, sPropName, Value) class frReportManager MEMVAR tmp_Param PRIVATE tmp_Param := Value RETURN Call_Func_CC_I(::_SetProperty, sObjectName, sPropName) == 1
by joseluisysturiz
Wed Mar 06, 2013 10:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fastreport y PDF sin pasar por un PREVIEW (SOLUCIONADO)
Replies: 6
Views: 1278

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

Re: FASTREPORT carregando um arquivo texto (TXT)

You can try opening the text file and then pass the variable. Best regards, Otto cText := memoread("text.txt") oFr := frReportManager():New() oFr:LoadLangRes( "German.xml" ) oFr:SetIcon( 1 ) oFr:LoadFromFile( ".\REPS\TRANSFERS.FR3" ) oFr:AddVariable( "MYDATA", ...
by Otto
Wed Jul 11, 2012 3:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FASTREPORT carregando um arquivo texto (TXT)
Replies: 4
Views: 948

FASTREPORT.. INSERTAR IMAGENES

... 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: 1840

FASTREPORT CON FIVEWIN

... y vuelvo a entrar. Alguien puede ayudarme con esto. A continuacion pongo el código FUNCTION creaInforme6resumen(cAlias,saldo) local oFr oFr:=frReportManager():New() with object oFr :setTitle("Resumen concepto y año") :setWorkArea("CUEN1",1) -->CUEN1 es el nombre que ...
by alvduqant
Thu Mar 17, 2011 10:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FASTREPORT CON FIVEWIN
Replies: 4
Views: 1024
Next

Return to advanced search