Re: HMG 3.0 FORUM TEST XVI
Posted: Sat Jan 16, 2010 12:42 am
Hi
New Turkish language file attached.
Regards
--
Esgici
New Turkish language file attached.
Regards
--
Esgici
Exclusive forum for HMG, a Free / Open Source xBase WIN32/64 Bits / GUI Development System
http://hmgforum.com/
THANKS!Vanguarda wrote:Hello friends,
Master i´ve update the file PtBR.LNG for HMG-IDE. Please so kind, replace it on official distribution.
The line 296 is translated now.
My best regards,
PS: Sorry my bad english.
THANKS!esgici wrote:Hi
New Turkish language file attached.
Regards
--
Esgici
I need to display these deleted records with another color. Is it possible ? I do not want gray color, I wish in red color.Roberto Lopez wrote:Deleted records can't be edited and are shown in light gray
FontColor.
..//..
Los registros marcados para eliminación no pueden ser editados y
se mostrarán en color gris claro.
Polo : no existe porque es la version 3.0 y estamos en la 3.1.1 si necesitas una de las viejas versiones solo tiene que ir aLeopoldo Blancas wrote:Gracias Roberto...
(Su link me manda a una pagina vacia y solo dice error 404)
Saludos
Polo
Probably I can get this by DYNAMICBACKCOLOR and DYNAMICFORECOLOR ? I saw something but I did not found it. Somebody could help me, please ?Pablo César wrote:I need to display these deleted records with another color. Is it possible ? I do not want gray color, I wish in red color.Roberto Lopez wrote:Deleted records can't be edited and are shown in light gray
FontColor.
..//..
Los registros marcados para eliminación no pueden ser editados y
se mostrarán en color gris claro.
--
Preciso que muestre los registros deletados con otro color. Es posible esto ? No quiero el color gris, quisiera el color rojo en cambio.
I found it !!!Pablo César wrote:Probably I can get this by DYNAMICBACKCOLOR and DYNAMICFORECOLOR ? I saw something but I did not found it. Somebody could help me, please ?Pablo César wrote:I need to display these deleted records with another color. Is it possible ? I do not want gray color, I wish in red color.Roberto Lopez wrote:Deleted records can't be edited and are shown in light gray
FontColor.
..//..
Los registros marcados para eliminación no pueden ser editados y
se mostrarán en color gris claro.
--
Preciso que muestre los registros deletados con otro color. Es posible esto ? No quiero el color gris, quisiera el color rojo en cambio.
Code: Select all
Local fColor := { || if ( deleted() , RGB( 255, 0, 0 ) , RGB( 255, 255, 255 ) ) }
@ ... GRID ;
DYNAMICFORECOLOR aFColor ;Code: Select all
#define MY_RED {224,38,16}
Local fColor := { || if ( deleted() , MY_RED , BLACK ) }
@ ... GRID ;
DYNAMICFORECOLOR aFColor ;