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
0
votes
1 answer

How to use number pad Keys in Qt?

The Qt::Key enum has no number pad specific numeric definitions. So how would one go about distinguishing between a number pressed on the number pad vs a number on the number row? I know the events at the OS level are different. Enter and Return on…
Evil Spork
  • 1,013
  • 2
  • 10
  • 16
0
votes
0 answers

I have to export a special character to a file for a transcribing program

I have a French special character 'œ' I want to export into the template of a transcribing program file. When I write it plainly in the python code, then the transcriber doesn't recognize that character. Within the transcriber itself, though I use a…
0
votes
0 answers

How to configure S-Lang (and ncurses) to read a1, c1, etc. keypad keys?

I want to be able to bind a1,c1,a3,etc. keys in Midnight Commander. However, the keys are not being treated specially when numlock is off – they should map to the given symbols ("a1",etc.) in the keymap file, however instead, they resolve to "home",…
psprint
  • 349
  • 1
  • 10
0
votes
0 answers

Can we open only english numpad for ionic capacitor for iOS?

There is one scenario where I am stuck in an ionic capacitor. We have one screen where users enter the amount. I want them to enter the amount in only English so I want to open only English Numpad (0-9). I can put validation but there is specific…
Paresh Gami
  • 4,777
  • 5
  • 23
  • 41
0
votes
1 answer

unopened numeric and other keyboard on textfield alertView in swift

I have an edit button and when I touch that button it shows an alert view. The alert view has a text field. I customized that keyboard to "numpad". But it never change to numpad only show default keyboard. How can I do it? The code is below. Also I…
Veysel Bozkurt
  • 53
  • 2
  • 11
0
votes
1 answer

enter specific widget with numpad tkinter

Hello I am preparing a GUI for a project, but unfortunately I cant enter a specific widget with my numpad at once. If I click a number on my touchscreen numpad, the digit appears in both widgets. How can I change it, that I can only enter a digit in…
Murat999
  • 1
  • 2
0
votes
2 answers

Disconnect Multiple input at once in two entry widgets (tkinter)

I need to program a GUI (touchscreen) with tkinter for Raspberry Pi. I have two entry widgets, which I need to enter seperately. Unfortunately both entries are written, when I enter a value on the numpad. How can change it, that I could only entry a…
Murat999
  • 1
  • 2
0
votes
1 answer

Multiple numpads to do a specific action when the "pin" is entered right in all of them

Is there a way i can make 5 numpads with 13 characters to enter in each and wen all entered right will do an action
Mr duck
  • 5
  • 1
0
votes
1 answer

How to make the numpad work in Qt 5.14.1?

I was working for quite a while with Qt5 5.9.8 and updated to the latest release Qt5 5.14.1. I built Qt 5.14.1 with exactly the same flags as the 5.9.8 version and everything seemed to be working fine except for one issue: It is impossible to enter…
Woltan
  • 13,723
  • 15
  • 78
  • 104
0
votes
1 answer

Input Manager name of Numpad Enter

I want to assign Numpad enter in the unity Inputmanager... but i can't [enter], numpad enter, keypad enter, [return], etc. nothing works. Any ideas what it could be i didn't find any answer online
CherryFake
  • 125
  • 1
  • 10
0
votes
1 answer

Detecting numpad keys with pynput keyboard

I'm using pynput keyboard module to detect keystrokes in python app. At the moment I can't differentiate numpad keys from regular number keys, they all return as "1", "2", "3", etc So what am I missing? code : def on_press(key): print key def…
LAZ
  • 402
  • 4
  • 15
0
votes
1 answer

How to insert a number directally in a input through a keypad in javascript?

I am a little confused about this plugin. Is there a way to insert the numbers directly in my text-basic input instead of to press "Done" in keypad? I'd like that as I type the numbers in keypad they be shown automatically in text-basic input…
winiercape
  • 135
  • 7
0
votes
1 answer

Add a dot instead of a comma in numberPad with Swift

I search how to replace a comma separator by a dot in numberPad in UITextField with Swift 5 please. I tried this but it didn't work. let commaValue = textField.text! let decimalValue = Double(commaValue.replacingOccurrences(of: ",", with: "."))
0
votes
1 answer

Xcode Custom Keyboard (DOT)

im trying to make a custom keyboard (a numberpad) for Iphone :) but i cant find out to code the dot/"." please help me!... thank you :) i have got this: - (IBAction)dot:(id)sender{ numberr.text = [numberr.text stringByAppendingString:@"."];} -…
ASKAPPS
  • 17
  • 6
0
votes
0 answers

How to use numpad as input in vb calculator

Basically I've been searching for weeks now but I cannot find a good example of using the numpad as an input for calculator. Private Sub Form1_KeyPress(ByVal KeyAscii As _MSForms.ReturnInteger) lblOutput.Text = lblOutput.Text & Chr(KeyAscii) …