Page 1 of 2

HMG 2.9.5

Posted: Fri Oct 09, 2009 1:42 am
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.

Re: HMG 2.9.5

Posted: Fri Oct 09, 2009 3:06 am
by Rathinagiri
Thanks a lot Roberto.

Re: HMG 2.9.5

Posted: Fri Oct 09, 2009 4:56 am
by sudip
Thank you Master Roberto. :D

Re: HMG 2.9.5

Posted: Fri Oct 09, 2009 5:18 am
by mol
I'm starting to work with it!
Thanks, Roberto!

Re: HMG 2.9.5

Posted: Fri Oct 09, 2009 5:23 am
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

Re: HMG 2.9.5

Posted: Fri Oct 09, 2009 5:25 am
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:

Re: HMG 2.9.5

Posted: Fri Oct 09, 2009 5:29 am
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

Re: HMG 2.9.5

Posted: Fri Oct 09, 2009 6:48 am
by esgici
Thanks a lot Maestro :D

Best Regards

--

Esgici

Re: HMG 2.9.5

Posted: Fri Oct 09, 2009 7:56 am
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

Re: HMG 2.9.5

Posted: Fri Oct 09, 2009 9:07 am
by Rathinagiri
You can download from the download page here.

viewtopic.php?f=2&t=68