|
Home > Archive > Programming with dBASE > November 2005 > on key label numeric keys
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
on key label numeric keys
|
|
|
| Hello,
I am they use on key label with the keys 1,2,3,4,5,6
if I press the number up from the part of the keyboard it works me,
on the other hand if I make it of the keys númeric of the right keyboard,
that are quicker, it doesn't work me.
Some idea?
thanks,
| |
| Glenn Johansen 2005-11-08, 9:24 am |
| use the "on key" with a global parce function.
like.....
on key domyfunc()
function domyfunc
do case
case nextkey()=50 // the number 2
do what I want for the number 2
case nextkey()=51 // the number 3
etc...
etc...
endcase
return .t.
--
Thanks.
Glenn Johansen
Software Architects, Inc.
Phone: (864) 963-8402
Fax: (864) 963-1809
Pager: (864) 290-0676
Cell: (864) 320-5321
"Xisco" <lata@telefonica.net> wrote in message
news:z7JHaF74FHA.1236@news-server...
> Hello,
> I am they use on key label with the keys 1,2,3,4,5,6
> if I press the number up from the part of the keyboard it works me,
> on the other hand if I make it of the keys númeric of the right keyboard,
> that are quicker, it doesn't work me.
>
> Some idea?
>
> thanks,
>
>
|
|
|
|
|