Page 3 of 4

Re: Lib Calc

Posted: Fri Apr 09, 2010 8:52 am
by esgici
Thanks calculator makers :)

Every business application need a calculator within in.

Regards, Saludos

--

Esgici

Re: Lib Calc

Posted: Sat Apr 10, 2010 12:10 am
by Vanguarda
mol wrote:by HMG dreams become reality :D
i agree with you.

regards,

Re: Lib Calc

Posted: Thu Dec 19, 2013 4:37 pm
by mustafa
Hola amigos
Les dejo la Calculadora que publicó el amigo Vanguarda, con algunos pequeños
arreglos efectuados en las teclas.
El proposito general de este sample ha sido reconvertir a UTF-8 con el programa
iniciado por Esgici y continuado por Serge.
Veran los dos ficheros ,original ANSI_Calculator.prg y reconvertido a UTF-8
Calculator.prg con los cambios efectuados por el nuevo programa de Serge
CFANS2UT8.exe viewtopic.php?f=10&t=3416&start=10" onclick="window.open(this.href);return false;" onclick="window.open(this.href);return false;
cambios en el fichero: CAF2UT8.HTM
Un saludo
Mustafa :P
*------------------------------------------------------------------------------*
Hello friends
I leave Calculator friend who published Vanguarda, with some small
arrangements made on the keys.
The general purpose of this sample has been convert to UTF-8 with the program
Esgici initiated and continued by Serge.
Veran the two files, original ANSI_Calculator.prg and converted to UTF-8
Calculator.prg with the changes made by the new program Serge
CFANS2UT8.exe viewtopic.php?f=10&t=3416&start=10" onclick="window.open(this.href);return false;" onclick="window.open(this.href);return false;
changes in the file: CAF2UT8.HTM
regards
Mustafa :P

Re: Lib Calc

Posted: Thu Dec 19, 2013 4:40 pm
by danielmaximiliano
Gracias / Thanks Vanguarda, Mustafa, Esgici and Serge por compartir / for sharing

Re: Lib Calc

Posted: Thu Dec 19, 2013 4:59 pm
by Javier Tovar
Gracias a todos por compartir.

Saludos

Re: Lib Calc

Posted: Sun Jan 12, 2014 9:15 am
by bpd2000
danielmaximiliano wrote:Gracias / Thanks Vanguarda, Mustafa, Esgici and Serge por compartir / for sharing
+1

Re: Lib Calc

Posted: Sun Jan 12, 2014 9:27 am
by serge_girard
Mustafa,


Very nice! And also nice to see that CAF2UT8 did a nice job!


Serge

Re: Lib Calc

Posted: Mon Sep 22, 2014 1:38 pm
by Agil Abdullah
Hi Vangurda and Friends,

Many thanks for your sharing. That's I am looking for these days.

Thanks also to Mr.Esgici who showed me this thread this evening.

Salam Hangat from Jakarta

Re: Lib Calc

Posted: Thu Apr 19, 2018 9:36 pm
by SALINETAS24
Hola, he incorporado la calculadora a un pequeño programa que estoy haciendo. Desde el Menú la puedo activar, bien con una opción del mismo menú o bien pulsado la tecla de función F3.
Pero cuando desde el Menu voy a otra opción articulos, clientes, etc., la calculadora se me desactiva.
Hay alguna forma de que se active la calculadora pulsado F3 desde cualquier parte del programa o cualquier modulo.
Gracias.
Y muy chula

Re: Lib Calc

Posted: Thu Apr 19, 2018 11:15 pm
by srvet_claudio
SALINETAS24 wrote: Thu Apr 19, 2018 9:36 pm Hola, he incorporado la calculadora a un pequeño programa que estoy haciendo. Desde el Menú la puedo activar, bien con una opción del mismo menú o bien pulsado la tecla de función F3.
Pero cuando desde el Menu voy a otra opción articulos, clientes, etc., la calculadora se me desactiva.
Hay alguna forma de que se active la calculadora pulsado F3 desde cualquier parte del programa o cualquier modulo.
Gracias.
Y muy chula
For example:

Function Main ()
........
CREATE EVENT PROCNAME MyFuncKey ()
........
RETURN


Function MyFuncKey ()
IF HMG_GetLastVirtualKeyDown () == VK_F3
HMG_CleanLastVirtualKeyDown()
Calc.Setfocus
ENDIF
Return nil