Use inkey.ch or i_keydb.ch in hmg.ch ???
Posted: Thu Oct 13, 2011 3:43 pm
Hola:
tengo una duda, siempre he usado inkey.ch en mis aplicaciones.
pero me encuentro que algunas cosas cambiaron
en hmg.chla tecla Escape es asi
pero en inkey.ch
cual usar en mis aplicaciones de consola.
PD: en algun lado vi un listado de codigos de caracteres pero no recuerdo donde
Hi I have a question, I have always used inkey.ch in my applications.
but I find that some things have changed
on the escape key hmg.ch is so
# define VK_ESCAPE 27
but inkey.ch
# define K_ESC 27 / * Esc, Ctrl-[* /
which one to use in my console applications
Pd: I saw somewhere a list of character codes but can not remember where
tengo una duda, siempre he usado inkey.ch en mis aplicaciones.
pero me encuentro que algunas cosas cambiaron
en hmg.chla tecla Escape es asi
Code: Select all
#define VK_ESCAPE 27
Code: Select all
#define K_ESC 27 /* Esc, Ctrl-[ */
PD: en algun lado vi un listado de codigos de caracteres pero no recuerdo donde
Hi I have a question, I have always used inkey.ch in my applications.
but I find that some things have changed
on the escape key hmg.ch is so
# define VK_ESCAPE 27
but inkey.ch
# define K_ESC 27 / * Esc, Ctrl-[* /
which one to use in my console applications
Pd: I saw somewhere a list of character codes but can not remember where