Page 10 of 20

Re: HMG 3.4.1

Posted: Sun Jul 19, 2015 2:14 pm
by serge_girard
Thanks for the update Claudio !

Serge

Re: HMG 3.4.1

Posted: Sun Jul 19, 2015 2:18 pm
by esgici
srvet_claudio wrote:
1) please unzip this patch in folder c:\hmg.3.4.1

2) and rebuild the lib
Thanks Doc :arrow:

Re: HMG 3.4.1

Posted: Sun Jul 19, 2015 5:37 pm
by tonton2
Thank Roberto lopez andDr Claudio Soto for your shared

Re: HMG 3.4.1

Posted: Sun Jul 19, 2015 11:15 pm
by esgici
FYI:
Rathinagiri wrote:
I am so happy to announce about the new version of HMG 3.4.1, thanks to Dr. Claudio Soto.

This time HMG is released in Google Drive. Please let me know if you have any difficulty in downloading. This version can be downloaded from here. (81.3MB)

...

Remarks:

  • Patches in this version must be applied. Please note following messages for further info and providences:
    1. Patch 1
    2. Patch 2
[/color]
- File name in the given download URL is : HMG.3.4.1.Setup_old.exe :?
- Two link named "Patch" in this post (probably added later) are not real patch; they are superseded by Patch-1 sent by Dr. Soto.

Re: HMG 3.4.1

Posted: Mon Jul 20, 2015 8:06 am
by quartz565
Thanks Claudio !

Re: HMG 3.4.1

Posted: Mon Jul 20, 2015 8:30 am
by dhaine_adp
Thanks Dr. Claudio.

Re: HMG 3.4.1

Posted: Wed Jul 22, 2015 2:36 am
by srvet_claudio
mol wrote:I found error in GRID control while using CHECKBOX in COLUMNCONTROLS.
GRID.CELL(nCheckBoxKolumnIndex) always return .f.
Try this sample produces from GRID_09:

Code: Select all

/*
* HMG Grid Demo
* Please try this sample to test CELL property and ITEM property
*/

#include "hmg.ch"

Function Main
Local aRows:= array(1)

	DEFINE WINDOW Form_1 ;
		AT 0,0 ;
		WIDTH 640 ;
		HEIGHT 400 ;
		TITLE 'GRID ERROR TEST' ;
		MAIN 

		DEFINE MAIN MENU
			DEFINE POPUP 'File'
				MENUITEM 'Get Item'	ACTION GetItem()
			END POPUP
		END MENU

		aRows [1]	:= {113.12, date(), 2, 3, .t. }

		@ 10,10 GRID Grid_1 ;
		WIDTH 620 ;
		HEIGHT 330 ;
		HEADERS {'Column 1','Column 2','Column 3','Column 4','Column 5'} ;
		WIDTHS {100,100,100,140,100} ;
		ITEMS aRows ;
		EDIT ON CHANGE playbeep() ;
		COLUMNCONTROLS { {'TEXTBOX','NUMERIC','$ 999,999.99'} , {'DATEPICKER','DROPDOWN'} , {'COMBOBOX',{'One','Two','Three'}} , { 'SPINNER' , 1 , 20 } , { 'CHECKBOX' , 'Yes' , 'No' } } ;
		CELLNAVIGATION

	END WINDOW

	CENTER WINDOW Form_1

	ACTIVATE WINDOW Form_1

Return

PROCEDURE GETITEM()
local a
local n
	n := 1
	aItem := Form_1.Grid_1.Item (n) 
	aCells := { Form_1.Grid_1.Cell(1,1),;
				Form_1.Grid_1.Cell(1,2),;
				Form_1.Grid_1.Cell(1,3),;
				Form_1.Grid_1.Cell(1,4),;
				Form_1.Grid_1.Cell(1,5) }
				
	msgdebug("this is array built with Grid_1.CELL(i) property", aCells)
	msgdebug("this is Grid_1.ITEM property", aItem, " and 5'th column:",  aItem[5])

RETURN

I've not tested with hmg 3.4.1 (i had no time to install it :? ), I think the result will be the same.
Please test it.
Yes you are right.
I fixed.

Re: HMG 3.4.1

Posted: Wed Jul 22, 2015 5:19 am
by mol
Claudio wrote: Yes you are right.
I fixed
THX for quick reaction :-D

Re: HMG 3.4.1

Posted: Wed Jul 22, 2015 8:23 pm
by jorge.posadas
HMG,

I already download the HMG 3.4.1 verion but when I try to user DEMO.BAT in this path C:\hmg.3.4.1\SAMPLES\HFCL\SQL\SQLITE

I get this errorr




Harbour 3.2.0dev (r1506261250)
Copyright (c) 1999-2015, http://harbour-project.org/
C:/Users/ADMINI~1/AppData/Local/Temp/hbmk_zkvm1n.dir/demo.o:demo.c:(.data+0xa8): undefined reference to `HB_FUN_CONNECT2DB'
C:/Users/ADMINI~1/AppData/Local/Temp/hbmk_zkvm1n.dir/demo.o:demo.c:(.data+0x178): undefined reference to `HB_FUN_SQL'
C:/Users/ADMINI~1/AppData/Local/Temp/hbmk_zkvm1n.dir/demo.o:demo.c:(.data+0xe8): undefined reference to `HB_FUN_C2SQL'
C:/Users/ADMINI~1/AppData/Local/Temp/hbmk_zkvm1n.dir/demo.o:demo.c:(.data+0x188): undefined reference to `HB_FUN_MISCSQL'
C:/hmg.3.4.1/mingw/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/bin/ld.exe: C:/Users/ADMINI~1/AppData/Local/Temp/hbmk_zkvm1n.dir/demo.o: bad reloc address 0xf in section `.text.startup'
C:/hmg.3.4.1/mingw/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/bin/ld.exe: final link failed: Invalid operation
collect2.exe: error: ld returned 1 exit status
hbmk2: Error: Ejecutando enlazador. 1
gcc.exe C:/Users/ADMINI~1/AppData/Local/Temp/hbmk_zkvm1n.dir/demo.o C:/Users/ADMINI~1/AppData/Local/Temp/hbmk_zkvm1n.dir/hbmk_rnti86.o C:/hmg.3.4.1/SAMPLES/HFCL/SQL/SQLITE/_temp.o -mwindows -Wl,--start-group -lhmg -lcrypt -ledit -leditex -lgraph -lini -lreport -lhfcl -lmsvfw32 -lvfw32 -lhbct -lhbwin -lhbmzip -lminizip -lhbmemio -lhbmisc -lhbmysql -lmysql -lhbtip -lhbsqlit3 -lsddodbc -lrddsql -lsddmy -lhbodbc -lodbc32 -lhbhpdf -lhbfimage -lhbpgsql -lhbnetio -lxhb -lpng -llibhpdf -lhbvpdf -lhbzebra -lhbextern -lhbdebug -lhbvmmt -lhbrtl -lhblang -lhbcpage -lgtcgi -lgtpca -lgtstd -lgtwin -lgtwvt -lgtgui -lhbrdd -lhbuddall -lhbusrrdd -lrddntx -lrddcdx -lrddnsx -lrddfpt -lhbrdd -lhbhsx -lhbsix -lhbmacro -lhbcplr -lhbpp -lhbcommon -lhbmainwin -lkernel32 -luser32 -lgdi32 -ladvapi32 -lws2_32 -liphlpapi -lwinspool -lcomctl32 -lcomdlg32 -lshell32 -luuid -lole32 -loleaut32 -lmpr -lwinmm -lmapi32 -limm32 -lmsimg32 -lwininet -lhbpcre -lhbzlib -Wl,--end-group -odemo.exe -LC:/hmg.3.4.1/harbour/lib/win/mingw -LC:/hmg.3.4.1/lib

hbmk2: Error: Funci¢n(es) referenciada, no encontrada, pero desconocida:




PD I download the path "hmg.3.4.1_patch1.rar" and then run the "BuildAllLib" but I get the same error.
I have W8, 64bits

Re: HMG 3.4.1

Posted: Thu Jul 23, 2015 6:49 pm
by andrebit
OLá amigos

Fiz o upgrade da versão 3.3.1 para a versão 3.4.1, entretanto o controle RichEditBox parou de funcionar. Isto pode ser verificado no sample em \Samples\controls\RichEditBox ou inserindo um controle RichEditBox em um projeto na IDE. Suspeito que o problema tenha relação com a propriedade "INVISIBLE" do controle.

Parabéns pelo ótimo trabalho

Abraços

André


------------------------------------------------------------------------------------------------------------------------

Hello friends

I upgraded from version 3.3.1 to version 3.4.1 , but RichEditBox control stopped working. This can be seen in the sample in \Samples\controls\RichEditBox\ or by inserting a RichEditBox control in a project in the IDE. I suspect that the problem is related to the "INVISIBLE" property of the control.

Congratulations for the great work

Best regards

André

---------------------------------------------------------------------------------------------------------------------

Hola amigos

He actualizado desde la versión 3.3.1 a la versión 3.4.1 , pero el control RichEditBox dejó de funcionar. Esto se puede ver en la muestra en \Samples\Controls\ RichEditBox\ o mediante la introducción de un control RichEditBox en un proyecto en el IDE. Sospecho que el problema está relacionado con la propiedad "INVISIBLE" del control.

Felicitaciones por el gran trabajo

saludos

André