HMG 3.0.40
Moderator: Rathinagiri
- esgici
- Posts: 4543
- Joined: Wed Jul 30, 2008 9:17 pm
- DBs Used: DBF
- Location: iskenderun / Turkiye
- Contact:
Re: HMG 3.0.40
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
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
Viva INTERNATIONAL HMG 
Re: HMG 3.0.40
Thank You Again Esgiciesgici 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
I fully undrstood now.
Sorry (I Mistyped Your Name last time)
Grazie e Ciao
- esgici
- Posts: 4543
- Joined: Wed Jul 30, 2008 9:17 pm
- DBs Used: DBF
- Location: iskenderun / Turkiye
- Contact:
Re: HMG 3.0.40
No problem amicovierirom wrote:(I Mistyped Your Name last time)
All we are friends here
Ciao
--
Esgici
Viva INTERNATIONAL HMG 
Re: HMG 3.0.40
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.
Thank you.
Last edited by jairpinho on Mon Nov 21, 2011 12:17 pm, edited 2 times in total.
Re: HMG 3.0.40
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
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
in the new IDE is showing syntax error in set navigation as attachment if someone knows something please post moved
- Attachments
-
- erro set navigation.jpg (272.78 KiB) Viewed 4959 times
Re: HMG 3.0.40
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
It doesn't call compilation with debug, but normal compilation.
Marek
Re: HMG 3.0.40
Error in saving file in Excel since version 3.0.39 and 3.0.40
- Attachments
-
- Imagem1.png (412.8 KiB) Viewed 4909 times
Re: HMG 3.0.40
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
I've encountered some problems with national characters, too.
But it's not HMG straight problem.
Marek
Re: HMG 3.0.40
Hi Rathinagirirathinagiri wrote:Hi all,
I am happy to upload the new version HMG 3.0.40.
It can be downloaded from site (24.67 MB)
Enjoy!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.
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