Page 2 of 4

Re: HMG 3.0 FORUM TEST XVII

Posted: Sat Jan 16, 2010 12:25 pm
by Rathinagiri
Yes. You might have tried while I was working on it. :)

Re: HMG 3.0 FORUM TEST XVII

Posted: Sat Jan 16, 2010 3:53 pm
by gfilatov
Roberto Lopez wrote:Hi All,

Changes on this release:

...
- Fixed problem with scrollbars update in virtual-dimensioned windows (3.0 Test bug). Reported by Sudip.

...
Hi Roberto,

Thanks a lot for this fix. But there is a similar problem with 5th parameter in the function SetScrollRange() also (it should be TRUE instead of 1).

Sorry for disturbing!

Re: HMG 3.0 FORUM TEST XVII

Posted: Sat Jan 16, 2010 6:56 pm
by Roberto Lopez
gfilatov wrote:
Roberto Lopez wrote:Hi All,

Changes on this release:

...
- Fixed problem with scrollbars update in virtual-dimensioned windows (3.0 Test bug). Reported by Sudip.

...
Hi Roberto,

Thanks a lot for this fix. But there is a similar problem with 5th parameter in the function SetScrollRange() also (it should be TRUE instead of 1).

Sorry for disturbing!
You are absolutely right.

I've already fixed.

Thanks!

EDIT: Anyway, the problem was not noticeable in my tests with virtual dimensioned windows in the tests prior to XVII publishing. It could be caused because usually SetScrollRange is called previous to window activation, so its very probable that no problems be noticed about this on the current release.

Re: HMG 3.0 FORUM TEST XVII

Posted: Sat Jan 16, 2010 6:57 pm
by esgici
Thanks a lot Maestro for this new release,

and thanks Rathi for new download system :D

Best regards

--

Esgici

Re: HMG 3.0 FORUM TEST XVII

Posted: Sat Jan 16, 2010 11:06 pm
by Vanguarda
Hi all,

Thanks Master for this new release.

My best regards,

Re: HMG 3.0 FORUM TEST XVII

Posted: Mon Jan 18, 2010 8:26 pm
by Steed
English

Hello,

First of all a like to say thanks Roberto, for this new version.
I like to report that something is happen with new Grid Control,Samples: Grid.25 and Grid.30.

Grid.25
Select Row15 and Col 1,
Press enter
Change the number 15 for 16
and then press keyDown

Grid.30
Select Row 00015 and Col 1,
Press enter
Change 15 for 16
and then press keyDown

the rows look like overlap


Regards,

Eduar

Español

Hola,

Primero que todo quiero agradecer a Roberto,por esta nueva version.
Quiero reportar que algo pasa con el nuevo control Grid, ejemplos Grid.25 y Grid.30.

Grid.25
Seleccionar fila15 y Columna 1,
Presionar enter
modificar el 15 por el numero 16
y presionar la flecha hacia abajo

Grid.30
Seleccionar fila 00015 y Columna 1,
Presionar enter
Cambiar 15 por 16
Y presionar flecha abajo

Las filas lucen como sobrepuestas


Saludos,

Eduar

Re: HMG 3.0 FORUM TEST XVII

Posted: Mon Jan 18, 2010 10:33 pm
by Roberto Lopez
Steed wrote:English

Hello,

First of all a like to say thanks Roberto, for this new version.
I like to report that something is happen with new Grid Control,Samples: Grid.25 and Grid.30.

Grid.25
Select Row15 and Col 1,
Press enter
Change the number 15 for 16
and then press keyDown

Grid.30
Select Row 00015 and Col 1,
Press enter
Change 15 for 16
and then press keyDown

the rows look like overlap
Thanks for the report.

I'll take a look at it ASAP.

Re: HMG 3.0 FORUM TEST XVII

Posted: Wed Jan 20, 2010 12:34 am
by Vanguarda
Hi All,

My friends,
I try recompile one project my on this new version of HMG, but i´ve a message like this "Undefined Reference to 'NOARRAY' ". Please, see the image bellow.
I posted the source code too.

What happen? Where be my mistake?

PS: Sorry my bad english

File Logs.prg

Code: Select all

#include <minigui.ch>

Function Init_Logs_Window()
	    Load Window Logs
	    Logs.Center
	    Logs.Activate
Return Nil

Function Read_Logs(cArea)
	    if Logs.Check_1.Value
	    	  cArea := cArea+"_old"
	    endif
	    Abre_Base(cArea)
	    if Logs.Check_2.Value
	    	    edit extended workarea &cArea
	    else
	    	    edit workarea &cArea	    
	    endif
	    Fecha_Base(cArea)
Return Nil

Re: HMG 3.0 FORUM TEST XVII

Posted: Wed Jan 20, 2010 5:17 am
by Roberto Lopez
Vanguarda wrote:Hi All,

My friends,
I try recompile one project my on this new version of HMG, but i´ve a message like this "Undefined Reference to 'NOARRAY' ". Please, see the image bellow.
I posted the source code too.
It's my fault.

I've erroneously deleted such function present in previous releases. It is used by EDIT command.

Code: Select all

Function NoArray (OldArray)
Local NewArray := {}
Local i

	If ValType ( OldArray ) == 'U'
		Return Nil
	ELse
		Asize ( NewArray , Len (OldArray) )
	EndIf
	
	For i := 1 To Len ( OldArray )

		If OldArray [i] == .t.
			NewArray [i] := .f.
		Else
			NewArray [i] := .t.
		EndIf

	Next i

Return NewArray
You can ad the code anywhere and recompile the library.

Re: HMG 3.0 FORUM TEST XVII

Posted: Wed Jan 20, 2010 10:03 am
by mol
For which function/property NoArray function is needed?