Search found 30 matches: ovrd

Return to advanced search

Re: Fast Report´s future

... working with eRep01.prg from the FWH Samples folder, it kept failing, but without a FW error message. I finally found the problem. PRINTAREA 7 OF oVRD ; ITEMIDS { 120 } ; ITEMVALUES { DToC( Date() ) } In the .VRD file, PRINTAREA 7 has no ITEMIDS 120. It doesn't exist. I'm not sure why we would ...
by TimStone
Wed May 13, 2020 10:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fast Report´s future
Replies: 56
Views: 6036

Re: Cambiar altura area Easy Report Tiempo Ejecución

... al inicio de la siguiente página. Para dar solución al problema de imprimir campos tipo memo yo hago lo siguiente: STATIC FUNCTION PrtArea02(oVrd)    LOCAL nLineas   := 0    LOCAL nLargo    := oRsFdf:Fields("FOL_ANC"):Value  ...
by Armando
Wed Jan 08, 2020 5:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar altura area Easy Report Tiempo Ejecución SOLUCIONADO
Replies: 12
Views: 2239

Re: Cambiar altura area Easy Report Tiempo Ejecución

Prueba a poner ovrd:aAreaHeight después de definir el área.
by MOISES
Sat Jan 04, 2020 5:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar altura area Easy Report Tiempo Ejecución SOLUCIONADO
Replies: 12
Views: 2239

Re: EasyReport Print To PDF File Without Dialog window ?

... directly to the printer without any preview. So EASYREPORT command should be below : 1) Directly to the Default OR Given Name printer EASYREPORT oVRD NAME "Inv.vrd" TO PRINTER DEFAULT | HP-PRINTER1 PRINTAREA 1 ... oVRD:End() 2) Directly to the FILE either one of the type PDF , WORD, ...
by shri_fwh
Sat Mar 23, 2019 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EasyReport Print To PDF File Without Dialog window ?
Replies: 20
Views: 3544

Re: Easy Report Designer Creating Different Format Files

... too. These VRD files are normal INI files with an other file extension. You can change the AreaFilesDir before calling EASYREPORT oVRD NAME oApp:G_REPORT_DIR+"Inv.vrd" with WritePProString Best regards Otto [General] EditProperties=1 EditAreaProperties=1 EditLanguage=1 ...
by Otto
Sat Mar 16, 2019 7:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Easy Report Designer Creating Different Format Files
Replies: 14
Views: 2200

Re: Report with array

Hello, Itemvalues must always be character strings. Also formatting must be done before passing to ER. Best regards Otto PRINTAREA 4 OF oVRD ; ITEMIDS { 102, 103 ,104, 105 } ; ITEMVALUES { aTemp[ I,2 ], dtoc( aTemp[ I,8 ]),aTemp[ I,4 ],aTemp[ I,5 ] } Here another sample cMenge := "1" ...
by Otto
Wed Mar 13, 2019 7:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report with array
Replies: 13
Views: 1826

Re: Error al crear el PDF para enivarlo por correo (SOLUCIONADO)

Mr. Rao:

I find out the problem, I had the title as:

    EASYREPORT oVRD NAME (cFmto) PREVIEW (.T.) ;
    MODAL OF oWnd TITLE "Vale: " + ALLTRIM(STRZERO(oHdr:VAL,7,0)) COPIES 1

And the problem was here "Vale: ", with no : character there is no problem.

Regards
by Armando
Mon Jul 16, 2018 10:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al crear el PDF para enivarlo por correo (SOLUCIONADO)
Replies: 9
Views: 1503

checkered sheet of paper from EASYREPORT

... an intern report I needed a checkered sheet. Attached is the code I use. EasyReport is very powerful. function f_druck( cDbf )    local oVRD    local lPreview := .t.    local cDruckerName := ""    local I := 0    local cTempRow := ""   *----------------------------------------------------------  ...
by Otto
Fri Nov 24, 2017 5:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: checkered sheet of paper from EASYREPORT
Replies: 5
Views: 1457

no printer selected program errors out

... completely. I inserted following lines to check for hDC. Maybe there is a way to build in a standard error handling for that. Best regards, Otto oVRD.prg after: ::oPrn := PrintBegin( ::cTitle,, ::lPreview, ; IIF( EMPTY( ::cPrinter ), NIL, ::cPrinter ), ; IIF( ::lPreview, lModal, .F. ) ) insert: ...
by Otto
Tue Aug 08, 2017 11:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: no printer selected program errors out
Replies: 2
Views: 490

EasyReport for Antonio

... |1|1|1|14|217|57|4|7|3|2|3|0|0||0|||||||||||| 106=TEXT|Company |106 |1|1|1|5|217|57|5|10|3|2|3|0|0||0|||||||||||| Source in Fivewin PRINTAREA 1 OF oVRD ; ITEMIDS { 101, 102, 105, 106 } ; ITEMVALUES { cTitel, cUntertitel, cDruckdatum, cCompany } 101=TEXT|Titel |Title |1|1|1|5|8|68|6|2|3|2|1|0|0||0|||||||||||| ...
by Otto
Mon Apr 24, 2017 10:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EasyReport for Antonio
Replies: 1
Views: 413

Re: Colocar Negrilla en mitad del texto

... on the content of the line. If this is the problem he needs to declare a extra PRINTAREA and then a if else endif. If A = .t. PRINTAREA 1 OF oVRD; ITEMIDS {101,103,104,105,106,107,109,110,111}; ITEMVALUES {vBar,nFecha,alltrim(nomb),nCedu,nDire,nTele,nRefe,text1,text2} Else PRINTAREA 3 OF ...
by Otto
Thu Jul 23, 2015 1:35 pm
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: Colocar Negrilla en mitad del texto
Replies: 19
Views: 8409

Re: La nueva apariencia de EasyReport

... casos llaman a una funcion concreta dentro del prg , sino a una unica función contenida dentro de él . Por otro lado en mirado lo de ER QUICK <oVRD> NAME <cRptFile> , no se si realmente tendrá la misma funcionalidad que todo el codigo que hemos añadido en erMain.prg ... yo creo que ...
by mastintin
Mon Sep 29, 2014 10:16 am
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: La nueva apariencia de EasyReport
Replies: 226
Views: 155486

Re: La nueva apariencia de EasyReport

... nMode, oDlg, cScript ) 2.- Controlo la impresion del reporte desde el código del programa . Puedo escoger entre el comando EASYREPORT <oVRD> NAME <cRptFile> o ER QUICK <oVRD> NAME <cRptFile> ( este ultimo aún no lo he mirado bien ) 3.- Se puede generar el codigo ...
by cnavarro
Mon Sep 29, 2014 9:39 am
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: La nueva apariencia de EasyReport
Replies: 226
Views: 155486

Re: La nueva apariencia de EasyReport

... nMode, oDlg, cScript ) 2.- Controlo la impresion del reporte desde el código del programa . Puedo escoger entre el comando EASYREPORT <oVRD> NAME <cRptFile> o ER QUICK <oVRD> NAME <cRptFile> ( este ultimo aún no lo he mirado bien ) 3.- Se puede generar el codigo ...
by mastintin
Mon Sep 29, 2014 7:34 am
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: La nueva apariencia de EasyReport
Replies: 226
Views: 155486

Re: La nueva apariencia de EasyReport

... se encuentra un archivo : ERStartScript1.prg ... esto me ilumino :D . El texto "script" es el nombre de la función a ejecutar , e ::ovrd es el parámetro a pasar ... osea desde run se le pasa la función y los parámetros y esta ejecuta pudiendo así controlar la ejecución desde un archivo ...
by mastintin
Sun Sep 28, 2014 6:57 pm
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: La nueva apariencia de EasyReport
Replies: 226
Views: 155486
Next

Return to advanced search