Page 2 of 3

Re: HMG 3.0 FORUM TEST XVI

Posted: Sat Jan 16, 2010 12:42 am
by esgici
Hi

New Turkish language file attached.

Regards

--

Esgici

Turkish.rar
Turkish Language File for HMG-IDE 3.00 Test XVI
(3.2 KiB) Downloaded 249 times

Re: HMG 3.0 FORUM TEST XVI

Posted: Sat Jan 16, 2010 3:44 am
by Roberto Lopez
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!

Re: HMG 3.0 FORUM TEST XVI

Posted: Sat Jan 16, 2010 3:44 am
by Roberto Lopez
esgici wrote:Hi

New Turkish language file attached.

Regards

--

Esgici

Turkish.rar
THANKS!

HMG 3.0 FORUM TEST XVI

Posted: Thu Mar 07, 2013 12:02 am
by Pablo César
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.
I need to display these deleted records with another color. Is it possible ? I do not want gray color, I wish in red color.

--

Preciso que muestre los registros deletados con otro color. Es posible esto ? No quiero el color gris, quisiera el color rojo en cambio.

Re: HMG 3.0 FORUM TEST XVI

Posted: Thu Mar 07, 2013 3:21 am
by Leopoldo Blancas
Gracias Roberto...

(Su link me manda a una pagina vacia y solo dice error 404)

Saludos
Polo

Re: HMG 3.0 FORUM TEST XVI

Posted: Thu Mar 07, 2013 10:20 am
by danielmaximiliano
Leopoldo Blancas wrote:Gracias Roberto...

(Su link me manda a una pagina vacia y solo dice error 404)

Saludos
Polo
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 a

http://hmgforum.com/site/index.php?opti ... s&Itemid=2

Re: HMG 3.0 FORUM TEST XVI

Posted: Thu Mar 07, 2013 11:18 am
by Pablo César
Pablo César wrote:
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.
I need to display these deleted records with another color. Is it possible ? I do not want gray color, I wish in red color.

--

Preciso que muestre los registros deletados con otro color. Es posible esto ? No quiero el color gris, quisiera el color rojo en cambio.
Probably I can get this by DYNAMICBACKCOLOR and DYNAMICFORECOLOR ? I saw something but I did not found it. Somebody could help me, please ?

Re: HMG 3.0 FORUM TEST XVI

Posted: Thu Mar 07, 2013 2:15 pm
by Leopoldo Blancas
OK daniel... gracias.

HMG 3.0 FORUM TEST XVI

Posted: Thu Mar 07, 2013 2:56 pm
by Pablo César
Pablo César wrote:
Pablo César wrote:
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.
I need to display these deleted records with another color. Is it possible ? I do not want gray color, I wish in red color.

--

Preciso que muestre los registros deletados con otro color. Es posible esto ? No quiero el color gris, quisiera el color rojo en cambio.
Probably I can get this by DYNAMICBACKCOLOR and DYNAMICFORECOLOR ? I saw something but I did not found it. Somebody could help me, please ?
I found it !!! :D

As I already said much before, some colors changing must be declared as CONSTANT for the good order. Then I made this:

In place of this (in Spanish: En lugar de esto)

Code: Select all

Local fColor := { || if ( deleted() , RGB( 255, 0, 0 ) , RGB( 255, 255, 255 ) ) }

@ ... GRID ;
   DYNAMICFORECOLOR aFColor ;
I replaced for this: (in Spanish: Substituí por esto:)

Code: Select all

#define MY_RED          {224,38,16}

Local fColor := { || if ( deleted() , MY_RED , BLACK ) }

@ ... GRID ;
   DYNAMICFORECOLOR aFColor ;
So it has worked pretty well !!! :D All for HMG strength !!

--- Traducido para el español

Encontré la solucion !!

Como habia mencionando há tiempo atrás, algunos cambios de colores deben hacerse por medio de declaracion de CONSTANTEs para que tenga efecto. Es ratro ese comportamiento, pero funciona cuando se utiliza el # Define.

Paso a relatar como hice.

...//... codigo en evidencia ...

Y asi funciona perfectamente !!! Alguién ya pasó por esto ?

Re: HMG 3.0 FORUM TEST XVI

Posted: Fri Mar 08, 2013 4:57 pm
by dhaine_adp
Hi Rathi,

I'm getting error code 404 in trying to download HMG 300 Test16.

TIA.