HMG 2.9.5

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

Moderator: Rathinagiri

User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

HMG 2.9.5

Post by Roberto Lopez »

- Harbour MiniGUI 2.9.5 Changelog:

Code: Select all

	English:
	--------

	- New: 'Filled' clause for PRINT RECTANGLE command. Contributed 
	by Rathinagiri.

	- New: 'DATA' section for reports. It allows to define 'iterator' and
	'Stopper' conditions. 
	
		BEGIN DATA
			ITERATOR	<xExpression>
			STOPPER		<xExpression>
		END DATA

	This new feature is useful for use (ie) arrays instead tables for reports.

	Sample:

		Public i := 1
		Public aRows [ 20 ] [ 3 ]
		...
		DEFINE REPORT TEMPLATE
			BEGIN DATA
				ITERATOR	i++
				STOPPER		i == 20 
			END DATA
			...
			BEGIN DETAIL
				BANDHEIGHT	6
				BEGIN TEXT
					EXPRESSION	aRows [i] [1]
				...
			END DETAIL
		...			
		END REPORT		

	The section is optional. If omited, 'Iterator' will be set as 'dbskip()'
	and 'Stopper' as 'Eof()'

	Full Sample: \hmg\samples\report.advanced\demo8.prg

	Español:
	--------

	- Nuevo: Cláusula 'Filled' para el comando PRINT RECTANGLE. Contribución
	de Rathinagiri.

	- Nuevo: Sección 'DATA' para el generador de reportes. Por medio de esta 
	sección puede definirse un 'Iterador'y un 'Stopper'.

		BEGIN DATA
			ITERATOR	<xExpression>
			STOPPER		<xExpression>
		END DATA

	Esta nueva característica es útil, por ejemplo, para usar arrays en lugar
	de tablas para los reportes.

	Ejemplo:

		Public i := 1
		Public aRows [ 20 ] [ 3 ]
		...
		DEFINE REPORT TEMPLATE
			BEGIN DATA
				ITERATOR	i++
				STOPPER		i == 20 
			END DATA
			...
			BEGIN DETAIL
				BANDHEIGHT	6
				BEGIN TEXT
					EXPRESSION	aRows [i] [1]
				...
			END DETAIL
		...			
		END REPORT		

	La sección es opcional. Si se omite, 'Iterator' es establecido como 'dbskip()'
	y 'Stopper()' como 'Eof()'.

	Ejemplo Completo: \hmg\samples\report.advanced\demo8.prg

Download/Descarga: http://www.sourceforge.net/projects/harbourminigui

Saludos/Regards,

Roberto.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: HMG 2.9.5

Post by Rathinagiri »

Thanks a lot Roberto.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
sudip
Posts: 1454
Joined: Sat Mar 07, 2009 11:52 am
Location: Kolkata, WB, India

Re: HMG 2.9.5

Post by sudip »

Thank you Master Roberto. :D
With best regards,
Sudip
User avatar
mol
Posts: 3720
Joined: Thu Sep 11, 2008 5:31 am
Location: Myszków, Poland
Contact:

Re: HMG 2.9.5

Post by mol »

I'm starting to work with it!
Thanks, Roberto!
User avatar
sudip
Posts: 1454
Joined: Sat Mar 07, 2009 11:52 am
Location: Kolkata, WB, India

Re: HMG 2.9.5

Post by sudip »

Yes, Marek is correct. :roll:
I also downloaded 2.9.4 !!!
(I understand it's only a careless mistake! So, don't worry Roberto. Just correct the link :) )
With best regards.
Sudip
Last edited by sudip on Fri Oct 09, 2009 5:27 am, edited 1 time in total.
With best regards,
Sudip
User avatar
mol
Posts: 3720
Joined: Thu Sep 11, 2008 5:31 am
Location: Myszków, Poland
Contact:

Re: HMG 2.9.5

Post by mol »

sudip wrote:Yes, Marek is correct. :roll:
I also downloaded 2.9.4 !!!
(I understand it's only a careless mistake! So, don't worry Roberto. Just correct the link :) )
With best regards.
Sudip

One page upon 2.9.4 you will find correct link to 2.9.5
Or try: http://downloads.sourceforge.net/projec ... mirror=dfn
:lol:
User avatar
sudip
Posts: 1454
Joined: Sat Mar 07, 2009 11:52 am
Location: Kolkata, WB, India

Re: HMG 2.9.5

Post by sudip »

Thanks a lot Marek and Master Roberto.
I downloaded it (2.9.5) :) And it works fine :)
Latest array handling facility in report generator is really a great news to me :D
Regards.
Sudip
With best regards,
Sudip
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: HMG 2.9.5

Post by esgici »

Thanks a lot Maestro :D

Best Regards

--

Esgici
Viva INTERNATIONAL HMG :D
User avatar
gfilatov
Posts: 1067
Joined: Fri Aug 01, 2008 5:42 am
Location: Ukraine
Contact:

Re: HMG 2.9.5

Post by gfilatov »

mol wrote:
sudip wrote:Yes, Marek is correct. :roll:
I also downloaded 2.9.4 !!!
(I understand it's only a careless mistake! So, don't worry Roberto. Just correct the link :) )
With best regards.
Sudip

One page upon 2.9.4 you will find correct link to 2.9.5
Or try: http://downloads.sourceforge.net/projec ... mirror=dfn
:lol:
Hi,

This link is not works for me :o

The correct link is
http://sourceforge.net/projects/harbour ... e/download
Kind Regards,
Grigory Filatov

"Everything should be made as simple as possible, but no simpler." Albert Einstein
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: HMG 2.9.5

Post by Rathinagiri »

You can download from the download page here.

viewtopic.php?f=2&t=68
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
Post Reply