Page 3 of 8
Re: HMG 3.0.40
Posted: Wed Nov 16, 2011 11:35 pm
by esgici
Ciao Vieri
In short : HMG4 is under developping, HMG3 is a stable release.
For more : please look at
here or you may use search facility of forum.
Regards
--
Esgici
Re: HMG 3.0.40
Posted: Thu Nov 17, 2011 10:02 pm
by vierirom
esgici wrote:Ciao Vieri
In short : HMG4 is under developping, HMG3 is a stable release.
For more : please look at
here or you may use search facility of forum.
Regards
--
Esgici
Thank You Again Esgici
I fully undrstood now.
Sorry (I Mistyped Your Name last time)
Grazie e Ciao
Re: HMG 3.0.40
Posted: Thu Nov 17, 2011 10:35 pm
by esgici
vierirom wrote:(I Mistyped Your Name last time)
No problem amico
All we are friends here
Ciao
--
Esgici
Re: HMG 3.0.40
Posted: Fri Nov 18, 2011 11:15 pm
by jairpinho
I would ask for the next update or correct the hmg enable fontcolor buton and textbox does not work for black only, this option is disabled since version 3.0.35
Thank you.
Re: HMG 3.0.40
Posted: Sat Nov 19, 2011 1:25 am
by jairpinho
failure to go IDE for HMG
Go to this dropdowmenu before creating the child thank you
* HMG-IDE Form Designer Generated Code
* (c) Roberto Lopez -
http://sites.google.com/site/hmgweb
DEFINE WINDOW TEMPLATE AT 207 , 306 WIDTH 550 HEIGHT 350 VIRTUAL WIDTH Nil VIRTUAL HEIGHT Nil TITLE "" ICON NIL MAIN CURSOR NIL ON INIT Nil ON RELEASE Nil ON INTERACTIVECLOSE Nil ON MOUSECLICK Nil ON MOUSEDRAG Nil ON MOUSEMOVE Nil ON SIZE Nil ON MAXIMIZE Nil ON MINIMIZE Nil ON PAINT Nil BACKCOLOR Nil NOTIFYICON NIL NOTIFYTOOLTIP NIL ON NOTIFYCLICK Nil ON GOTFOCUS Nil ON LOSTFOCUS Nil ON SCROLLUP Nil ON SCROLLDOWN Nil ON SCROLLLEFT Nil ON SCROLLRIGHT Nil ON HSCROLLBOX Nil ON VSCROLLBOX Nil
/*here is creating
DEFINE DROPDOWN MENU BUTTON Toolbar_1_Btn1
MENUITEM "teste" ACTION nil NAME menu1
END MENU
*/
DEFINE SPLITBOX
DEFINE TOOLBAR Toolbar_1 BUTTONSIZE 64,64 FONT "Arial" SIZE 9 FLAT
BUTTON Toolbar_1_Btn1 CAPTION "MENU1"PICTURE "MINIGUI_EDIT_NEW" ACTION Nil DROPDOWN
END TOOLBAR
END SPLITBOX
&&would be right here
DEFINE DROPDOWN MENU BUTTON Toolbar_1_Btn1
MENUITEM "teste" ACTION nil NAME menu1
END MENU
END WINDOW
Re: HMG 3.0.40
Posted: Mon Nov 21, 2011 12:57 am
by jairpinho
in the new IDE is showing syntax error in set navigation as attachment if someone knows something please post moved
Re: HMG 3.0.40
Posted: Mon Nov 21, 2011 6:41 am
by mol
There is a problem with F8 key in IDE ver. 2011.06.24, I think.
It doesn't call compilation with debug, but normal compilation.
Marek
Re: HMG 3.0.40
Posted: Tue Nov 22, 2011 2:30 pm
by jairpinho
Error in saving file in Excel since version 3.0.39 and 3.0.40
Re: HMG 3.0.40
Posted: Tue Nov 22, 2011 5:36 pm
by mol
There is a problem with last OLE library, I think.
I've encountered some problems with national characters, too.
But it's not HMG straight problem.
Marek
Re: HMG 3.0.40
Posted: Wed Nov 23, 2011 7:22 pm
by vierirom
rathinagiri wrote:Hi all,
I am happy to upload the new version HMG 3.0.40.
It can be downloaded from
site (24.67 MB)
Code: Select all
- HMG 3.0.40 (Test) 2011/11/13 Changelog:
- Updated to Harbour 3.1 Nightly Build (17111 2011-11-10)
- New : SET CELLNAVIGATIONMODE EXCEL | STANDARD (by Roberto Lopez) To have an option to navigate cells in a grid downwards while in-place editing. Please see samples\grid.39 sample folder.
Enjoy!
Hi Rathinagiri
Thank You for the upgrading
While the Sample Grid 39 is perfectly working, I tried to use it in a grid "data bounded" (I mean connected to a DBF), but it didn't work.
My fail ?
Perhaps The SET CELLNAVIGATIONMODE EXCEL command must be put before main (function) ?
I report here a small snippet of code with the code I used (before your change) to obtain a similar result.
Function bolla_grid_1_onchange
LOCAL NEW_ROW := 0
LOCAL FIX_COL := 4 // only column # 4 is editable
IF ! EMPTY(This.CellRowIndex) .AND. ! EMPTY(This.CellColIndex)
NEW_ROW = This.CellRowIndex + 1
IF ! NEW_ROW > Bolla.grid_1.ItemCount
Bolla.Grid_1.Value := {NEW_ROW, FIX_COL}
ENDIF
ENDIF
Return Nil
Have a good time
Vieri