Search found 110 matches
- Fri Apr 06, 2018 4:05 pm
- Forum: General Discussions
- Topic: Happy Birthday to Anand AND m6face !
- Replies: 12
- Views: 272
- Wed Mar 28, 2018 9:03 pm
- Forum: General Discussions
- Topic: Happy Birthday to BeGeS!
- Replies: 13
- Views: 380
Re: Happy Birthday to BeGeS!
My most sincere gratitude for remember me, my dear and unknown friends.
Thank you very much really.

Thank you very much really.


- Mon Mar 05, 2018 9:55 am
- Forum: HMG General Help
- Topic: Read mdb file
- Replies: 8
- Views: 581
Re: Read mdb file

Thanks, Serge.
I'll try it tonight and then I'll tell you.

- Mon Mar 05, 2018 9:54 am
- Forum: HMG General Help
- Topic: Read mdb file
- Replies: 8
- Views: 581
Re: Read mdb file
Working with .DBF file is very simple through HMG, however, other than DbF file you have to use AdoRDD/SQL Visit, http://hmgforum.com/viewtopic.php?f=9&t=837&p=5044&hilit=access+database#p5044 it may help you, there is a good working example from Mustafa More info on DBF, Access MDB, and SQL databa...
- Sun Mar 04, 2018 9:28 pm
- Forum: HMG General Help
- Topic: Read mdb file
- Replies: 8
- Views: 581
Read mdb file
Hi friends. I need to read an Access file (.mdb). I've looked around and there are quite a few things, but... I think the trees do not let me see the forest. What I want is basic: open the file, read the fields of the different registers to save that information in some variables, and close the file...
- Thu Mar 01, 2018 11:00 pm
- Forum: Self Introduction
- Topic: NUEVO EN HMG
- Replies: 10
- Views: 637
Re: NUEVO EN HMG
¡Hola Sali!
Saludos de un manchego enamorado de la Costa Blanca.
Saludos de un manchego enamorado de la Costa Blanca.

- Tue Feb 27, 2018 10:02 pm
- Forum: My HMG Projects
- Topic: Harbour MiniGUI Extended Edition build 18.02 is published
- Replies: 8
- Views: 807
Re: Harbour MiniGUI Extended Edition build 18.02 is published
Thank you very much, Filatov. 

- Sun Feb 18, 2018 3:14 pm
- Forum: HMG Source
- Topic: Help
- Replies: 8
- Views: 602
Re: Help
I would create this function:
Your index:
vrs+NEGATEX(sal)
Code: Select all
FUNCTION NEGATEX(NUMERO)
LOCAL RESUL
IF NUMERO<0
RESUL:= "-" + STR(ABS(NUMERO),18,2)
ELSE
RESUL:= STR(NUMERO,19,2)
ENDIF
RETURN RESUL
vrs+NEGATEX(sal)
- Fri Jan 26, 2018 9:15 pm
- Forum: General Discussions
- Topic: Happy Birthday to Mr. Grigory Filatov !!!
- Replies: 26
- Views: 844
Re: Happy Birthday to Mr. Grigory Filatov !!!
Happiness, Mr. Filatov!


- Sat Jan 13, 2018 10:52 am
- Forum: HMG Samples
- Topic: Print Windows Form
- Replies: 26
- Views: 4506
Re: Print Windows Form
You need to create a rectangular box with a height not less than the height of the printed text ;) ...a box that is not necessary with PRINT LINE TO. Thanks. Out of curiosity, I have continued with this matter. The solutions of mol and edk are equally valid, although that of edk is more direct (fas...