HMG 3.0 FORUM TEST XVI
Moderator: Rathinagiri
- esgici
- Posts: 4543
- Joined: Wed Jul 30, 2008 9:17 pm
- DBs Used: DBF
- Location: iskenderun / Turkiye
- Contact:
Re: HMG 3.0 FORUM TEST XVI
Hi
New Turkish language file attached.
Regards
--
Esgici
New Turkish language file attached.
Regards
--
Esgici
Viva INTERNATIONAL HMG 
- Roberto Lopez
- HMG Founder
- Posts: 4023
- Joined: Wed Jul 30, 2008 6:43 pm
Re: HMG 3.0 FORUM TEST XVI
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.
Regards/Saludos,
Roberto
(Veritas Filia Temporis)
Roberto
(Veritas Filia Temporis)
- Roberto Lopez
- HMG Founder
- Posts: 4023
- Joined: Wed Jul 30, 2008 6:43 pm
Re: HMG 3.0 FORUM TEST XVI
THANKS!esgici wrote:Hi
New Turkish language file attached.
Regards
--
Esgici
Regards/Saludos,
Roberto
(Veritas Filia Temporis)
Roberto
(Veritas Filia Temporis)
- Pablo César
- Posts: 4059
- Joined: Wed Sep 08, 2010 1:18 pm
- Location: Curitiba - Brasil
HMG 3.0 FORUM TEST XVI
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.
Last edited by Pablo César on Thu Mar 07, 2013 11:16 am, edited 1 time in total.
HMGing a better world
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
-
Leopoldo Blancas
- Posts: 388
- Joined: Wed Nov 21, 2012 7:14 pm
- Location: México
Re: HMG 3.0 FORUM TEST XVI
Gracias Roberto...
(Su link me manda a una pagina vacia y solo dice error 404)
Saludos
Polo
(Su link me manda a una pagina vacia y solo dice error 404)
Saludos
Polo
- danielmaximiliano
- Posts: 2646
- Joined: Fri Apr 09, 2010 4:53 pm
- Location: Argentina
- Contact:
Re: HMG 3.0 FORUM TEST XVI
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
http://hmgforum.com/site/index.php?opti ... s&Itemid=2
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*
Saludos / Regards
DaNiElMaXiMiLiAnO
Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*
Saludos / Regards
DaNiElMaXiMiLiAnO
Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
- Pablo César
- Posts: 4059
- Joined: Wed Sep 08, 2010 1:18 pm
- Location: Curitiba - Brasil
Re: HMG 3.0 FORUM TEST XVI
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.
HMGing a better world
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
-
Leopoldo Blancas
- Posts: 388
- Joined: Wed Nov 21, 2012 7:14 pm
- Location: México
Re: HMG 3.0 FORUM TEST XVI
OK daniel... gracias.
- Pablo César
- Posts: 4059
- Joined: Wed Sep 08, 2010 1:18 pm
- Location: Curitiba - Brasil
HMG 3.0 FORUM TEST XVI
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.
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 ;Code: Select all
#define MY_RED {224,38,16}
Local fColor := { || if ( deleted() , MY_RED , BLACK ) }
@ ... GRID ;
DYNAMICFORECOLOR aFColor ;--- 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 ?
HMGing a better world
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
- dhaine_adp
- Posts: 457
- Joined: Wed Aug 06, 2008 12:22 pm
- Location: Manila, Philippines
Re: HMG 3.0 FORUM TEST XVI
Hi Rathi,
I'm getting error code 404 in trying to download HMG 300 Test16.
TIA.
I'm getting error code 404 in trying to download HMG 300 Test16.
TIA.
Regards,
Danny
Manila, Philippines
Danny
Manila, Philippines