Page 4 of 5
Re: 3 databases 3 tabs 3 grids
Posted: Wed Nov 10, 2010 6:57 am
by mexicanto
luigi, i just check your code
i really like it
one question, what is the command "set navigation extended" ??
i never heard of that
i checked the hmg reference, and the clipper reference and i can not
find any reference to that command
thank you very much again to all of you for your invaluable help
daniel
Re: 3 databases 3 tabs 3 grids
Posted: Wed Nov 10, 2010 6:59 am
by Rathinagiri
Set Navigation Extended...
SET NAVIGATION EXTENDED | STANDARD
When set to EXTENDED, pressing ENTER key when focus is in TEXTBOX COMBOBOX or DATEPICKER, acts like TAB key.
From HMG Documentation...
Actually it helps to move around the controls using 'Enter' key too (like console mode clipper/harbour).
Re: 3 databases 3 tabs 3 grids
Posted: Wed Nov 10, 2010 7:01 am
by mexicanto
thanks rathi !!!
daniel
Re: 3 databases 3 tabs 3 grids
Posted: Wed Nov 10, 2010 7:03 am
by mexicanto
where did you find the explanation in the reference ?
chapter, or option in the reference, please
may be i can learn more commands !!
thanks
Re: 3 databases 3 tabs 3 grids
Posted: Wed Nov 10, 2010 9:02 am
by l3whmg
Hi Daniel,
thanks for your words and I add many thanks to Roberto and the other for great HMG: we can write good programs because they do a great job

About SET EXTENDED Rathi give you answer.
Ciao
Re: 3 databases 3 tabs 3 grids
Posted: Wed Nov 10, 2010 9:21 am
by Rathinagiri
In c:\hmg\doc\hmgdoc.htm => misc.commands
Re: 3 databases 3 tabs 3 grids
Posted: Wed Nov 10, 2010 9:26 am
by mexicanto
thank you rathi !
(in case i not make myself clear, when i said "invaluable help", i mean that your help is very very valuable, that i can not put a price on it)
thanks to all participants in this topic
i only hope that somebody put a code with the toolbar
yes, i know, i ask to much to often, but you are great guys !!
Re: 3 databases 3 tabs 3 grids
Posted: Wed Nov 10, 2010 10:24 am
by l3whmg
Hi Daniel,
this is an example:
Code: Select all
DEFINE TOOLBAR MainToolBar BUTTONWIDTH 60 BUTTONHEIGHT 30 IMAGEWIDTH 20 IMAGEHEIGHT 20 FONTNAME "Arial" FONTSIZE 8 STRICTWIDTH .T. FLAT .T. BORDER .T.
TOOLBUTTON bt_Exit CAPTION "e&Xit" PICTURE "BTEXIT" ONCLICK p005_Exit() SEPARATOR .T.
TOOLBUTTON bt_RecAdd CAPTION "&Add" PICTURE "BTRECADD" ONCLICK p005_RecAdd() SEPARATOR .T.
TOOLBUTTON bt_RecEdit CAPTION "&Edit" PICTURE "BTRECEDIT" ONCLICK p005_RecEdit() SEPARATOR .T.
END TOOLBAR
where "BTEXIT", "BTRECEDT", "BTRECADD" are .bmp defined in your .rc file.
Other people like use a series of defined buttons (perhaps in a splitchild)... Up to you.
Little, little suggestion from another newbe: take a look to the example...

Re: 3 databases 3 tabs 3 grids
Posted: Wed Nov 10, 2010 10:32 am
by mexicanto
i look the examples, in special "contactos" in the samples directory
but i mean, publish a more complex aplication
with the 3 grids and the buttons in a tool bar or buttons alone
and publish it in the sample directory with the hmg setup
exactly like your 3 grids, bur with the buttons included
buttons : --first - previous - next - last --- add - delete - modify --- seek - report
again, you are the man, luigi
aaahh, and still, if somebody help with the camera - scanner - fingerprint project, i am not kidding, i am willing to share the money that i am going to charge for that project
luigi, are you interested in help me with that ?
i know the activex is the path to follow
have a great day !
Re: 3 databases 3 tabs 3 grids
Posted: Wed Nov 10, 2010 10:51 am
by l3whmg
Hi Daniel,
about first question I can do something (I'm try to develop a simple family contability, ASAP I share on this forum).
For other, I'm sorry, I don't have knowledge to handle fingerprint, camera, etc. with ACTIVEX. Perhaps, with the new HMG generation (rel 4) there will be

more facilities, I don't know.
Ciao