Page 4 of 4

Re: READ THE KEYBOARD

Posted: Tue Apr 27, 2010 8:27 pm
by srvet_claudio
jparada wrote:Hola Claudio,

Muchas Gracias por tu ejemplo y por tu ayuda.

Saludos
Javier
Ok Javier,
fue un placer poder colaborar.
Saludos
Claudio.

READ THE KEYBOARD

Posted: Sat Jan 08, 2011 2:30 pm
by Pablo César
Muy buen trabajo Dr. Claudio ! Congratulations ! It will be very usefull for me, many thanks !

Re: READ THE KEYBOARD

Posted: Mon Dec 03, 2012 6:21 pm
by andyglezl
Hola Claudio

Será posible poder detectar el status de la tecla "Alt-Gr" ?

Dejando volar la imaginación...
Podriamos tener otro juego de teclas (de la A a la Z) para poder asignar dentro de nuestros
programas ya que con las teclas "Shift", "alt" y "ctrl" la mayoria de programas las utilizan
(incluso las asignan "Globales") y luego hay conflicto porque aparecen ventanas o se ejecutan
funciones que no son de nuestro programa

Gracias
-----------------------------------------------------------------------------------
Hello Claudio

It will be possible to detect the status of the "Alt-Gr"?

Letting your imagination ...
We could have another set of keys (A to Z) to assign within our
programs since using the "Shift", "alt" and "ctrl" most programs use
(including assigned "Global") and then there are windows or conflict because running
functions that are not in our program

thanks

Re: READ THE KEYBOARD

Posted: Mon Dec 03, 2012 8:26 pm
by srvet_claudio
Hi Andrés.
andyglezl wrote:It will be possible to detect the status of the "Alt-Gr"?
It is not possible to directly monitor the state of ALT-GR (Right ALT key) because ALT-GR is a shortcut for two keys: ALT and CTRL.
Press ALT-GR is equivalent to pressing CTRL + ALT together.
Best regards,
Claudio.

Re: READ THE KEYBOARD

Posted: Tue Dec 04, 2012 8:22 pm
by luisvasquezcl
Que genial aporte Claudio,
se me ocurre dejar un programa residente en el pc y grabar todas las entradas :evil: ...
creo que estoy dando malas ideas, mejor me voy a despejar un poco .... :lol:
saludos.

Re: READ THE KEYBOARD

Posted: Tue Dec 04, 2012 10:22 pm
by esgici
luisvasquezcl wrote:Que genial aporte Claudio,
se me ocurre dejar un programa residente en el pc y grabar todas las entradas :evil: ...
creo que estoy dando malas ideas, mejor me voy a despejar un poco .... :lol:
saludos.
Google wrote:That brilliant contribution Claudio,
I can think of leaving a program residing on the pc and record all entries ...
I think I'm giving bad ideas, the better I'm going to clear a bit ...
Hola Luis

If your intend with "entries" is commands, open files, run a program by clicking its icon etc;
IMO this isn't so bad idea; instead, good and useful one :idea:

As far as I remember all computers pre-PC era had this feature, namely : HISTORY ;)

At beginning of PCs, while programs are command based; dBase, the pioneer of whole xBase, had such commands :

Code: Select all

SET DOHISTORY on/OFF    : Captures commands executed from a program file in HISTORY.
SET HISTORY TO <expN>   : establishes the number of commands retained in HISTORY mode.
SET HISTORY ON / off    : allows / prevents access to the commands stored in HISTORY using 
                        : the up arrow key.  SET HISTORY OFF
LIST HISTORY
DISPLAY HISTORY
Ahhh; that oldies, goldy days :(

And Windows supports this feature with RUN command as combobox style.