Questions tagged [numpad]

A numpad or numeric keypad is the small, palm-sized, seventeen key section of a computer keyboard.

A numpad or numeric keypad is the small, palm-sized, seventeen key section of a computer keyboard.

120 questions
1
vote
1 answer

Autohotkey NumpadMult not sending *

I have the following snippet of code in my ahk script, which should send NumpadMult when semicolon is pressed, however it just sends a semicolon: ;:: Send, {NumpadMult} return I have similar code for period to NumpadDot, and all other…
Pingk
  • 532
  • 2
  • 7
  • 17
1
vote
1 answer

Blocking some of number pad's numbers so that it is adapted to the user input.

My app asks the user for a precise number of minutes which she/he inserts using a number pad keyboard. I'd like to block the keyboard's numbers >5 for the first number the user types (so that they can't type a number of minutes > 59). For the second…
1
vote
3 answers

C# WinForms: How do I write a specific letter to a datagridview cell if a certain key is pressed?

I (I am fairly new at C#) ran into a problem which I have tried to solve myself but couldn't find a solution. given: I have a Datagridview with 10 columns and x rows. (The column Headers reach from 1 to 10) My Problem: I only need to write "1", "0"…
HCCFMT
  • 11
  • 1
1
vote
1 answer

c# numpad acts like keyboard

I am trying to come up with a code that will, depending on what key is pressed in a read-only text box, add or subtract 1 to other text boxes. My problem is I need to differentiate the numpad #(0-9) from the #s above the qwerty keyboard. When I use…
1
vote
1 answer

How can I add Done button to the number pad in swift?

How can I add Done button to the number pad in swift and then use this button to hide the keyboard?
Eagle
  • 11
  • 2
1
vote
1 answer

how to detect Number and Decimal Keyboard iOS

I'm developing a custom keyboard and based on Apple App Store Review guideline I have to provide a keypad for decimal and number pad : Keyboard extensions must provide Number and Decimal keyboard types as described in the App Extension Programming…
Reza_Rg
  • 3,345
  • 7
  • 32
  • 48
1
vote
4 answers

Resigning Number Pad of TextField ios

I am using the keyboard type Number Pad for a particular Text Field which is to be given with a zip number. When using regular keyboard i use resignfirstresponder to quit the keyboard when i click on the enter key in that keyboard. But for the…
Spidy
  • 1,137
  • 3
  • 28
  • 48
1
vote
0 answers

jquery getting correct ascii character from keyInput

I am trying to restrict the user input to ascii characters. It works on regular keypad, but doesn't work when I press keys on numeric keypad. I tried event.keycode and event.which both result the same. How do I get the correct code? Here is the…
Kiran
  • 5,478
  • 13
  • 56
  • 84
0
votes
1 answer

Emulate remote control number key presses on Android TV Emulator

Is there a way to emulate the remote's numpad key presses (i.e. KeyEvent.KEYCODE_NUMPAD) in the Android TV Emulator?
YU No
  • 69
  • 1
  • 7
0
votes
1 answer

Numpad enter key doesn't work in Python program

I have a Python program running on Raspberry Pi 3 (Raspbian version 10) and I need to do all operations only with Numpad. Everything works fine, but NUMPAD ENTER KEY doesn't work. When I want to enter my input via numpad enter, nothing happens. Does…
Honza
  • 1
  • 1
0
votes
1 answer

PyAutoGUI seems to ignore numpad key presses

I'm using Windows, Python, and PyAutoGUI to try to automate some activities in Minecraft as a fun project. I have been successful with using PyAutoGUI to switch to Minecraft once I start the script in Visual Studio Code, click on the "Back to Game"…
0
votes
1 answer

AndroidTV IPTV change channel by number input

Need to change channel by numpad of remote controller but don't know correct method. Numbers can be pressed multiple times and need to wait for all of them and get 1 String like "123". Now I override onKey up like below override fun onKeyUp(keyCode:…
Dowlpack
  • 318
  • 3
  • 10
0
votes
1 answer

Using RegisterHotKey with number pad values not working?

I have some constants: constexpr int MonitorDisplay1 = 100; constexpr int MonitorDisplay2 = 200; constexpr int MonitorDisplay3 = 400; constexpr int MonitorDisplay4 = 500; constexpr int MonitorDisplay1KeyPad = 101; constexpr int…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
0
votes
1 answer

Displaying number pad

There is delegate method for textfeilds to display the number pad . Similar to that I want to display it when clicking a button.Is it possible?? Since my app deals with phone calls,I want to make a call to the number which is not stored in address…
Icoder
  • 330
  • 3
  • 25
0
votes
1 answer

how do i expand the enter button to bridge all 3 rows? i.e should be extended to sit under both '0' '.' and 'Del'

I'm using tkinter to create my first GUI and i have reached a problem. How do I expand the 'enter' button of the numpad (which opens when you click a empty box) to cover the empty space currently there? How do I designate the opening position of the…
Iceman
  • 45
  • 4