HMG 3.0 FORUM TEST XVII

HMG announcements; Latest HMG-related news, releases, fixes and updates.

Moderator: Rathinagiri

User avatar
Rathinagiri
Posts: 5481
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: HMG 3.0 FORUM TEST XVII

Post by Rathinagiri »

Yes. You might have tried while I was working on it. :)
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
gfilatov
Posts: 1100
Joined: Fri Aug 01, 2008 5:42 am
Location: Ukraine
Contact:

Re: HMG 3.0 FORUM TEST XVII

Post 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!
Kind Regards,
Grigory Filatov

"Everything should be made as simple as possible, but no simpler." Albert Einstein
User avatar
Roberto Lopez
HMG Founder
Posts: 4023
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 3.0 FORUM TEST XVII

Post 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.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: HMG 3.0 FORUM TEST XVII

Post by esgici »

Thanks a lot Maestro for this new release,

and thanks Rathi for new download system :D

Best regards

--

Esgici
Viva INTERNATIONAL HMG :D
User avatar
Vanguarda
Posts: 543
Joined: Wed Feb 11, 2009 10:56 am
Location: Americana - SP
Contact:

Re: HMG 3.0 FORUM TEST XVII

Post by Vanguarda »

Hi all,

Thanks Master for this new release.

My best regards,
--
Paulo Sérgio Durço (Vanguarda)


http://hmglights.wordpress.com/
User avatar
Steed
Posts: 439
Joined: Sat Dec 12, 2009 3:40 pm

Re: HMG 3.0 FORUM TEST XVII

Post 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
User avatar
Roberto Lopez
HMG Founder
Posts: 4023
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 3.0 FORUM TEST XVII

Post 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.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Vanguarda
Posts: 543
Joined: Wed Feb 11, 2009 10:56 am
Location: Americana - SP
Contact:

Re: HMG 3.0 FORUM TEST XVII

Post 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
Attachments
MyMistake.jpg
MyMistake.jpg (104.9 KiB) Viewed 4488 times
--
Paulo Sérgio Durço (Vanguarda)


http://hmglights.wordpress.com/
User avatar
Roberto Lopez
HMG Founder
Posts: 4023
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 3.0 FORUM TEST XVII

Post 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.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
mol
Posts: 3805
Joined: Thu Sep 11, 2008 5:31 am
Location: Myszków, Poland
Contact:

Re: HMG 3.0 FORUM TEST XVII

Post by mol »

For which function/property NoArray function is needed?
Post Reply