From: Bob D. <bd...@si...> - 2005-07-07 22:28:56
|
Hi, Is this happening in PDF or HTML or both? Also can you add a column and just print out r.detailcnt And see what comes out (does the number continue to increase?) - bob On Thu, 2005-07-07 at 17:02 -0400, Bob Doan wrote: > Hi, > I am using r.detailcnt to colorize my rows, but > at page 4 of my report it don't works anymore. > I am using: > <Line bgcolor="iif(r.detailcnt%2,'white','0xebebeb')"> > > Please how I can solve this? > > -- > Everton Luis Berz > Nucleo de Sistemas :: FACCAT - Faculdades de Taquara > +55 51 541 6600 - R.647 > ICQ 7807919 -- Bob Doan <bd...@si...> |
From: Bob D. <bd...@si...> - 2005-07-07 22:50:37
|
Configure it with --disable-doc - bob On Thu, 2005-07-07 at 17:02 -0400, Bob Doan wrote: > When running make (1.3.4) on Centos 4.0: > > Package Fancyhdr Warning: fancyhdr's E option without twoside > option is > useless > on input line 461. > LaTeX Warning: Reference `INTRO' on page iii undefined on > input line 518. > LaTeX Warning: Reference `27' on page iii undefined on input > line 542. > (tons of these) > ..... > Error: pdfjadetex: libpng: internal error > ==> Fatal error occurred, the output PDF file is not > finished! > ...... > > > Any ideas? -- Bob Doan <bd...@si...> |
From: <ev...@fa...> - 2005-07-08 03:32:03
|
Citando Bob Doan <bd...@si...>: > Hi, >=20 > Is this happening in PDF or HTML or both? Both. >=20 > Also can you add a column and just print out r.detailcnt >=20 > And see what comes out (does the number continue to increase?) No, it's decrease when reaches 214 (last column): RECURSOS HUMANOS I - 4 21= 3 ESTATISTICA I 8,75 4 21= 4 MICROINFORMATICA APLICADA - 4 -2= 14 PSICOLOGIA APLICADA A ADMINISTRACAO - 4 -2= 13 RECURSOS HUMANOS II - 4 -2= 12 Is possible I clean the detailcnt in a break? (temporary solution) >=20 > - bob >=20 -- Everton -------------------------------------------------------------------------= ----- FACCAT - Faculdades de Taquara Acesse a agenda de julho - http://www.faccat.br/agenda_07.html |
From: Bob D. <bd...@si...> - 2005-07-08 13:50:49
|
Hey, Can we add some trace code?? In pcode.c around line 764 you will see this: } else if(type == RLIB_RLIB_VARIABLE_DETAILCNT) { gint64 dcnt = r->detail_line_count * RLIB_DECIMAL_PRECISION; return rlib_value_new_number(rval, dcnt); Can we make it this: } else if(type == RLIB_RLIB_VARIABLE_DETAILCNT) { gint64 dcnt = r->detail_line_count * RLIB_DECIMAL_PRECISION; r_error("DETAIL COUNT IN PCODE IS %ld\n", r->detail_line_count); return rlib_value_new_number(rval, dcnt); And in reportgen.c around line 577 you will see this: if(output_count > 0) r->detail_line_count++; After those lines can you add: r_error("IN REPORT GEN DETAIL LINE CNT IS %d\n", r->detail_line_count); And can you run the report from the command line and send me the output? On Fri, 2005-07-08 at 00:31 -0300, ev...@fa... wrote: > Citando Bob Doan <bd...@si...>: > > > Hi, > > > > Is this happening in PDF or HTML or both? > > Both. > > > > > Also can you add a column and just print out r.detailcnt > > > > And see what comes out (does the number continue to increase?) > > No, it's decrease when reaches 214 (last column): > > RECURSOS HUMANOS I - 4 213 > ESTATISTICA I 8,75 4 214 > MICROINFORMATICA APLICADA - 4 -214 > PSICOLOGIA APLICADA A ADMINISTRACAO - 4 -213 > RECURSOS HUMANOS II - 4 -212 > > > Is possible I clean the detailcnt in a break? (temporary solution) > > > > > - bob > > > > -- > Everton > ------------------------------------------------------------------------------ > FACCAT - Faculdades de Taquara > Acesse a agenda de julho - http://www.faccat.br/agenda_07.html > > > ------------------------------------------------------- > This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening > July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual > core and dual graphics technology at this free one hour event hosted by HP, > AMD, and NVIDIA. To register visit http://www.hp.com/go/dualwebinar > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |