3 databases 3 tabs 3 grids

General Help regarding HMG, Compilation, Linking, Samples

Moderator: Rathinagiri

mexicanto

Re: 3 databases 3 tabs 3 grids

Post 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
User avatar
Rathinagiri
Posts: 5482
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: 3 databases 3 tabs 3 grids

Post 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).
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
mexicanto

Re: 3 databases 3 tabs 3 grids

Post by mexicanto »

thanks rathi !!!

daniel
mexicanto

Re: 3 databases 3 tabs 3 grids

Post 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
User avatar
l3whmg
Posts: 694
Joined: Mon Feb 23, 2009 8:46 pm
Location: Italy
Contact:

Re: 3 databases 3 tabs 3 grids

Post 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
Luigi from Italy
www.L3W.it
User avatar
Rathinagiri
Posts: 5482
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: 3 databases 3 tabs 3 grids

Post by Rathinagiri »

In c:\hmg\doc\hmgdoc.htm => misc.commands
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
mexicanto

Re: 3 databases 3 tabs 3 grids

Post 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 !!
User avatar
l3whmg
Posts: 694
Joined: Mon Feb 23, 2009 8:46 pm
Location: Italy
Contact:

Re: 3 databases 3 tabs 3 grids

Post 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... :mrgreen:
Luigi from Italy
www.L3W.it
mexicanto

Re: 3 databases 3 tabs 3 grids

Post 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 !
User avatar
l3whmg
Posts: 694
Joined: Mon Feb 23, 2009 8:46 pm
Location: Italy
Contact:

Re: 3 databases 3 tabs 3 grids

Post 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
Luigi from Italy
www.L3W.it
Post Reply