Page 1 of 1

En Reporte a un SHADOW se le puede cambiar de Color

Posted: Tue Oct 23, 2007 5:36 pm
by ruben Dario
Es posible cambiar a un SHADOW de color diferente al gris y blanco

Code: Select all

    REPORT oReport ;
          TITLE  "LISTADO DE TIPO DE MODULOS",;
                 OemtoAnsi("");
          FONT   oFon1,;
                 oFon2,;
                 oFon3 ;
          PEN    oPen1,;
                 oPen2 ;
          HEADER  " Fecha : "+dtoc(date()),;
                  "Hora  : "+time(),;
                  "Pagina: "+str(oReport:nPage,3);
                  RIGHT ;
          FOOTER OemtoAnsi(memvar->X_SIGLA+"       "+memvar->X_TPAQU )  CENTERED;
          PREVIEW  //TO DEVICE oPrn PREVIEW     //      TO FILE "d:\test.txt" TO PRINTER
     COLUMN TITLE "Codigo" DATA  b_tipmod->tipmod  FONT 1 GRID 1 SHADOW grid 
     COLUMN TITLE "Nombre" DATA  b_tipmod->nombre  FONT 1 GRID 1 SHADOW grid 
    END REPORT

Posted: Wed Oct 24, 2007 6:09 am
by Antonio Linares
Ruben,

Prueba así:

oReport:SetShdColor( CLR_GREEN )

Posted: Wed Oct 24, 2007 4:45 pm
by ruben Dario
Antonio Linares wrote:Ruben,

Prueba así:

oReport:SetShdColor( CLR_GREEN )
Gracias Antonio , Me funciono Correctamente.