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
3
votes
0 answers

Numpad not working in VIM on Windows

I'm using VIM on windows(the command line app from the basic command prompt) and when I press any number key on the numpad it inserts a 'Î' character, it also happens if I press shift+arrow keys. How can I make the numpad insert the actual numbers…
T.Kristof
  • 31
  • 2
3
votes
1 answer

Delphi ShortCuts with NumPad Numbers

I'm trying to build main menu with Delphi 10. When I'm setting menuitem ShortCut to "0" (main pad) - it works fine and looks like "Item 0". So, when I'm trying to set shortcut to "Num 0" - it works fine too, BUT, it looks like previous "Item 0". How…
3
votes
3 answers

Why are numeric keypad numbers and regular numbers not the same in KeyEvent?

This code does not allow me to enter numeric values from a numeric keypad. private void textBox1_KeyDown( object sender, KeyEventArgs e ) { e.SuppressKeyPress = !( (e.KeyValue >= 48 && e.KeyValue <= 57) ) } How can I include numerical values in…
Naveen Kumar V
  • 2,559
  • 2
  • 29
  • 43
3
votes
1 answer

Using RegisterHotKey to register hot key using Numpad

I have used RegisterHotKey for registering a global hotkey for my application. I need to register Control + Shift + 0 (in numpad) for the application. I have registered it using the below code snippet: RegisterHotKey(_mainWindowHandle, 1,…
Pratik Bhattacharya
  • 3,596
  • 2
  • 32
  • 60
2
votes
2 answers

Popup Numpad (Numeric Keypad) for Multiple Entry Boxes

Good Day everyone. I'm currently trying to implement a popup number pad with entry boxes for use on a pi 4 touchscreen. After searching for a while I found this forum with an effective solution provided by scotty101. Unfortunately, the code is only…
Adriaan vS
  • 43
  • 5
2
votes
1 answer

How do I press alt with pyautoguii?

Here's my script: import pyautogui import subprocess import time #notepad is in the file path programma = "Notepad" #opening notepad subprocess.Popen(programma) #gives time to open notepad, ie I've also tried with higher…
Dave
  • 21
  • 2
2
votes
1 answer

How to increase padding on custom view extending Button without scaling drawable?

I understand that it's easier to set padding without changing drawable size on ImageButton, however I am extending Button for my custom view as I need to override the OnTextChanged method (since Button extends TextView). I have tried to set the…
George
  • 389
  • 5
  • 17
2
votes
0 answers

Number Pad not showing swift 4

I am doing a side project , just to implement some UI objects and see if i can do simple programming.. i have put a uilable, a textfield and a button.. the objective is to enter numbers in the textfield and display it on the lable when pressing the…
M Abousaif
  • 21
  • 5
2
votes
1 answer

Programmatically changing WPF TextBox's Text with regard of cursor position and current selection

I am implementing some sort of NumericKeypad Control for my WPF application which clients can use to conviniently enter text with a Touchscreen. The Control itself runs fine, I even managed to run the Control (which is a Window) in the foreground…
Cosmo Jasra
  • 263
  • 2
  • 11
2
votes
1 answer

iOS number pad keyboard with ability to switch on text keyboard

I have a text field that I want to have a keyboard like this when user start typing: please also see this video: https://youtu.be/iU_jocny3N0 As you can see in this video there is a "ABC" key that helps user to switch from number pad to text. and…
Husein Behboudi Rad
  • 5,434
  • 11
  • 57
  • 115
2
votes
1 answer

Make sure space bar is always available on numeric pad

I'm developing an app that lets users enter numbers and spaces in a TextView, so I'm using input.setRawInputType(Configuration.KEYBOARD_12KEY so the user has the nice and convenient numpad. However on some devices the numeric pad doesn't have a…
LPVOID
  • 306
  • 3
  • 17
2
votes
1 answer

In iOS how to add a line above the Number Pad, in Swift?

By default if you set a UITextField keyboard type to Number Pad when it is displayed, it appears without a keyline above the top keys (iOS10). Is there an easy way to resolve this?
cleverbit
  • 5,514
  • 5
  • 28
  • 38
2
votes
2 answers

How to setup key bindings that processes all number strokes in one event?

I've registered key bindings to button and I'd like to react to all number key-strokes. I could register different event to every single key(0-9), but that's kind of stupid. So is it possible to handle it all in one event? Here is my code that…
Jan Beneš
  • 742
  • 1
  • 5
  • 24
2
votes
0 answers

How to prevent NumLock from disabling?

I'm making a simple game and I want to control it using numeric keyboard (including NumLock key). A player should be able to press several keys simultaneously, or press and hold any key. After NumLock key is pressed, I have to turn NumLock back on…
grabantot
  • 2,111
  • 20
  • 31
2
votes
4 answers

Possible combinations of characters on a phone's numpad

I was faced with a question recently in C. We have a phone's numpad with following layout: 1[abc] 2[def] 3[ghi] 4[jkl] 5[mno] 6[pqr] 7[st] 8[uv] 9[wx] 0[yz] How to come up with an API which gives all possible combinations of characters…
tcpip
  • 351
  • 2
  • 4
  • 16