Search found 46 matches: vkey

Return to advanced search

... lineas), una vez modificado el archivo agregalo a tu proyecto con tu generador de aplicaciones. 2.- En tu programa principal la cabecera #Include "VKEY.CH", agrega esta linea despues de la funcion main() SET Key VK_F1 TO Ayuda() en este caso hace referencia al modulo ayuda, el cual puede ser cualquier ...
by cuatecatl82
Tue Nov 13, 2007 6:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: usando la Tecla F1 para otras funciones
Replies: 2
Views: 614

Otto,

If you do oXBrowse:bKeyDown = { | nKey | MsgInfo( nKey ) } and press 1 on the numeric keypad, then you get 97 which it is from vkey.ch:

#define VK_NUMPAD1 97
by Antonio Linares
Sat Nov 03, 2007 6:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - numerical pad on keyboard
Replies: 5
Views: 1262

Otto:

You don't have to use the ASCII code for the keypad keys or the function keys.

You have to use the "Virtual Key" value provided in the VKEY.CH (linked automatically with Fivewin.ch).

In VKEY.CH you will find the value for the numeric key pad.

Greetings from Argentina
by R.F.
Sat Nov 03, 2007 11:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - numerical pad on keyboard
Replies: 5
Views: 1262

ALT + E

... .t.)} per compatibilità con un vecchio programma clipper devo fare la stessa cosa col tasto ALT + E, VK_ALT_E non è definito in vkey.ch e in nessun altro file include e #define K_ALT_E 274 del vecchio clipper non funziona. dove posso trovare la definizione funzionante di tutte ...
by marzio
Wed Apr 04, 2007 8:47 am
 
Forum: All products support
Topic: ALT + E
Replies: 2
Views: 917

Goos:

\FWH\INCLUDE\VKey.Ch


Saludos
by Armando
Mon Feb 26, 2007 3:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: donde estan definidas VK_RETURN, VK_ESC, etc.
Replies: 2
Views: 793

Re: KeyState

Gilbert wrote:Hi,

Is there a way to test the state of ALT Key just like CONTROL and SHIFT key.

In VKEY.CH I can find VK_CONTROL, VK_SHIFT but not VK_ALT

Regards


is: VK_MENU

regards
by wmormar
Tue Feb 20, 2007 5:29 pm
 
Forum: FiveWin for CA-Clipper
Topic: KeyState
Replies: 6
Views: 2336

KeyState

Hi,

Is there a way to test the state of ALT Key just like CONTROL and SHIFT key.

In VKEY.CH I can find VK_CONTROL, VK_SHIFT but not VK_ALT

Regards
by Gilbert
Tue Feb 20, 2007 4:33 pm
 
Forum: FiveWin for CA-Clipper
Topic: KeyState
Replies: 6
Views: 2336

KEYBOARD status

... "ON ", "OFF" ) Inkey( 0 ) RETURN #pragma BEGINDUMP #include <windows.h> #include "hbapi.h" #define TOGGLED 0x0001 void SetKeyLock( BYTE vKey, BOOL bState ) { BOOL bCurrentState; bCurrentState = ( GetKeyState( vKey ) & TOGGLED ); if( (bState && !bCurrentState) || (!bState ...
by Maverich
Tue Aug 22, 2006 9:34 am
 
Forum: All products support
Topic: KEYBOARD status
Replies: 3
Views: 1492

... necesarios si vas a hacer conexiones con ODBC), el DDE.CH (necesario si haces conexiones de Dinamic Data Exchange), algunos de ellos incluyen el VKEY-CH que es llamado, desde algun archivo INCLUDE. Si haz quitado algun archivo CH que hicera referencia al VKEY.CH desde el fivewin.ch, entonces ...
by R.F.
Thu Aug 03, 2006 3:55 pm
 
Forum: FiveWin para CA-Clipper
Topic: error con VK_Return
Replies: 4
Views: 1069

Gracias Maestro Tienes Razon.. asi fue

Saludos, Rene, asi fue me faltaba Vkey.ch, porque me hablas de una version "recortada", tengo todo lo necesario???
by norte_67
Thu Aug 03, 2006 2:38 am
 
Forum: FiveWin para CA-Clipper
Topic: error con VK_Return
Replies: 4
Views: 1069

En el modulo que tiene el error se te olvido incluir el VKEY.CH:

#include "vkey.ch"

Seguramente estas compilandolo con una version "recortada" del FIVEWIN.CH
by R.F.
Wed Aug 02, 2006 4:53 pm
 
Forum: FiveWin para CA-Clipper
Topic: error con VK_Return
Replies: 4
Views: 1069

VK_BACK es un define.
O bien incluyes vkey.ch, o haces el define
Code: Select all  Expand view
#define VK_BACK 8
by Biel EA6DD
Wed Jul 26, 2006 8:27 am
 
Forum: FiveWin para Pocket PC
Topic: PROBLEMAS CON UN GET!
Replies: 4
Views: 1571

Re: Cual es el #define para las combinaciones CTTL + A

... ctrl y alt mas cualquier tecla. Muchas Gracias.. Principiante en FWH En cual momento necesitas de estas combinaciones?? Mira em fwh..\include\vkey.ch En cualquier momento dentro de un dialogo, hasta el momento ya he asigando funcion a teclas como F1,F2, etc, Pero requiero asiganarle una funcion ...
by armandini
Mon Feb 06, 2006 9:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cual es el #define para las combinaciones CTTL + A
Replies: 4
Views: 1385

Re: Cual es el #define para las combinaciones CTTL + A

armandini wrote:No encuentro la defincion de los #define para las combinaciones de las teclas de control + las letras : shift, ctrl y alt mas cualquier tecla.


Muchas Gracias..
Principiante en FWH


En cual momento necesitas de estas combinaciones??

Mira em fwh..\include\vkey.ch
by karinha
Mon Feb 06, 2006 9:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cual es el #define para las combinaciones CTTL + A
Replies: 4
Views: 1385

... Can anybody shed light on it. Just change this line: IF nKey <> 32 To: IF nKey != 32 .and. nKey != VK_DELETE And add this include: #include "vkey.ch" Regards, James
by James Bott
Fri Nov 18, 2005 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Incremental Search in TwBrowse (Standard)
Replies: 3
Views: 2198
PreviousNext

Return to advanced search