Page 1 of 1

clase outlook

Posted: Fri Sep 08, 2006 3:18 pm
by Marco Augusto
Compile el ejemplo testoutl.prg
y funciono bien pero...
los "prompts" de los bitmaps se muestran en un color
muy tenue, hay forma de cambiarl el color y el font ?


Saludos

Re: clase outlook

Posted: Mon Sep 11, 2006 4:27 pm
by Maurilio Viana
Marco, intenta esto:

Code: Select all

define font oFont name "Arial" size 0, -9 BOLD
...
@ -1, -1 OUTLOOK oOut              ;
          SIZE 100, oWnd:nHeight()  ;
          PIXEL                     ;
          COLOR CLR_WHITE, CLR_GRAY ; // <----- Colores!
          FONT oFont                ;  // <--- font
          OF oWnd
Salu2!
Maurilio

Posted: Mon Sep 11, 2006 4:57 pm
by Marco Augusto
MUCHAS GRACIAS POR LA ATENCION

SALUDOS