HMG 4 Started

Moderator: Rathinagiri

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

HMG 4 Started

Post by Roberto Lopez »

Hi All,

- The new project SourceForge's link:

http://sourceforge.net/projects/hmg/

- To download files:

https://sourceforge.net/projects/hmg/files/

IMPORTANT: UNPACK BINARIES IN ITS DEFAULT LOCATION (C:\HMG.4) OTHERWISE IT WILL NOT WORK.

- If you are a project contributor:

1. Download Tortoise SVN client (http://sourceforge.net/projects/tortoisesvn/).
2. Install according the setup wizard directions.
3. Open Windows explorer.
4. Right click in the C:\HMG.4\SVN folder.
5. Select 'SVN Checkout' (project url is: https://hmg.svn.sourceforge.net/svnroot/hmg).
6. If you change the code of your local copy and want to upload, Right click in the C:\HMG.4\SVN and select SVN Commit...
7. If you want download the changes from the server, Right click in the C:\HMG.4\SVN and select SVN Update.

- To become a contributor you need a SourceForge.net account and must be to be added to the project by the HMG administrators (http://www.hmgforum.com).

I'll publish coding guidelines for contributors soon.

Enjoy!
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
danielmaximiliano
Posts: 2611
Joined: Fri Apr 09, 2010 4:53 pm
Location: Argentina
Contact:

Re: HMG 4 Started

Post by danielmaximiliano »

:( Tengo un error al querer instalar sobre Win7 , esta corrupto algunos de los archivos ?
intente bajar 2 veces el instalador en diferentes ubicaciones en la PC
alguna idea?
DaNiElMaXiMiLiAnO
Attachments
error.jpg
error.jpg (88.63 KiB) Viewed 8426 times
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*

Saludos / Regards
DaNiElMaXiMiLiAnO

Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 4 Started

Post by Roberto Lopez »

danielmaximiliano wrote::( Tengo un error al querer instalar sobre Win7 , esta corrupto algunos de los archivos ?
intente bajar 2 veces el instalador en diferentes ubicaciones en la PC
alguna idea?
DaNiElMaXiMiLiAnO
Lo subí de nuevo. Ahora está ok.

I've uploaded again. It's ok now.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
cdsaenz
Posts: 58
Joined: Sun Jul 11, 2010 4:02 am

Re: HMG 4 Started

Post by cdsaenz »

Yo tuve algun problema tambien pero un gestor de descarga lo solucionó. Me gusto mucho la logica que expusiste para esta nueva etapa del proyecto Roberto, creo que es una excelente decision, felicitaciones y gracias!.
Charly
Argentina, Hobbyist developer, Clipper/Delphi/PHP/Progress
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 4 Started

Post by Roberto Lopez »

cdsaenz wrote:Yo tuve algun problema tambien pero un gestor de descarga lo solucionó. Me gusto mucho la logica que expusiste para esta nueva etapa del proyecto Roberto, creo que es una excelente decision, felicitaciones y gracias!.
Gracias!
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
sudip
Posts: 1454
Joined: Sat Mar 07, 2009 11:52 am
Location: Kolkata, WB, India

Re: HMG 4 Started

Post by sudip »

Can't download anything from SF.net :(
May be I should try later
With best regards,
Sudip
User avatar
mol
Posts: 3718
Joined: Thu Sep 11, 2008 5:31 am
Location: Myszków, Poland
Contact:

Re: HMG 4 Started

Post by mol »

I'm going o the trip this weekend :)
I'll join mondey. Marek
Do not write too many posts ;)
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 4 Started

Post by Rathinagiri »

Hurray! I had successfully updated the checkbox control's onchange event. :) Now working on other checkbox properties and events.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 4 Started

Post by Roberto Lopez »

rathinagiri wrote:Hurray! I had successfully updated the checkbox control's onchange event. :) Now working on other checkbox properties and events.
And I've successfully updated my local copy with your changes... IT WORKS!!!! :)

Please, note that the OnChange event is already inherited from Control class.

You must add an already inherited property, event or method only when the inherited code is not useful for a specific control (needing another treatment).

Note that changing the (ie) ::bOnChange value once the control was created is not enough. You must establish a new event connection at QT level, so you'll need a structure similar this:

Code: Select all


if ::lCreated

* The new value must be 'connected' to the ::oQTObject

else

* The new value must be handled with class variables only (ie: ::bOnChange)

endif

Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 4 Started

Post by Roberto Lopez »

Roberto Lopez wrote:

Code: Select all


if ::lCreated

* The new value must be 'connected' to the ::oQTObject

else

* The new value must be handled with class variables only (ie: ::bOnChange)

endif

And this structure allows the 'magic' of creating a new object without need to remember a long list of parameters in the right order, allowing the 'nice oop' demos.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
Post Reply