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

How to traverse through cells from up, down arrows added in toolbar of numpad in UITableView?

numberToolbar.items=[ UIBarButtonItem(image:UIImage(named: "icKeyboardArrowUp"), style: UIBarButtonItem.Style.plain, target: self, action: #selector(ViewController.traverseUp)), UIBarButtonItem(image:UIImage(named:…
anan
  • 1
0
votes
1 answer

XCode : Number pad with point for comma

I have a number pad with done button. But the user can only choose numbers without commas. Is there a way to have a number pad with donebutton (which I have), integrated with punctuation, or at least a point for the comma?
Sacha
  • 127
  • 3
  • 11
0
votes
1 answer

How to Use NumPad to navigate list view in WPF C#

I'm creating a WPF application which the List View will load some order from database. Due to some situation, only a NumPad keyboard can be used when this application is in used in actual situation. However, I've been searching over the internet but…
Sivvie Lim
  • 784
  • 2
  • 14
  • 43
0
votes
4 answers

How to determine if a numpad is present and how to obtain the scan code for the numpad enter key?

I would like to add certain behavior to my program that binds a function to the numpad enter key, if it is present, or bind an alternate key if it is not. According to Microsoft: The scan code is the value that the keyboard hardware generates when …
Zhro
  • 2,546
  • 2
  • 29
  • 39
0
votes
1 answer

appium java click numpad on simulator keyboard

I'm using appium with java language for building IOS automation. So after successfully login i will be directed to TAC page. input TAC The numpad will be automatically displayed and i have the TAC code separately. if we press the numpad one by one…
0
votes
1 answer

jQuery numpad header title

I'm using succesfully jQuery numpad (github page here) for numeric input related to a table with dynamic content. In each row there are 2 buttons (+ and -) that trigger numpad on click. Since user can performs 2 kind of options (add or substract)…
MarcM
  • 2,173
  • 22
  • 32
0
votes
1 answer

AutoHotKey pause part of the script

I've got a script running which binds numpad numbers to inline numbers (in order to easily add Unicode chars on the fly because I'm on a laptop without the numpad) and that also binds Home and End to Ctrl+Left and Ctrl+Right respectively. Now, the…
Alain D'Ettorre
  • 134
  • 1
  • 4
  • 12
0
votes
1 answer

ReactJS - Input is taking numpad keys as letters

I'm making an app in which my inputs are controlled. I want a particular input to accept numbers only and I have achieved it, but it won't take numpad inputs for it takes them as letters (code range is 96 to 105) This is the input:
MarksASP
  • 494
  • 6
  • 15
0
votes
2 answers

Angular-input number from number pad to clicked textbox

I am new in Angular and I am facing a problem right now that is, I have a number pad and some textboxes. I have to input to the particular textbox from number pad. Here is the Code
0
votes
2 answers

Custom done button for numberpads for more textfields in iPhone

I have ten text fields in a view. In that i need 2 textfield for phone and zip code. So I want to display a numberkeypad when clicking phone and zip text field. I have created a custom done button using the following link. This code is useful if I…
Warrior
  • 39,156
  • 44
  • 139
  • 214
0
votes
2 answers

About input type="number" open number pad in mobile but how open numpad for input type="password"

I am try to open the number pad in mobile browser for but i am not able to do this when I set in my HTML page the mobile browser open the number pad for this field when the viewer click on this…
Baktash
  • 11
  • 1
0
votes
4 answers

How to code a "numbers pad" like Call application

how can I do something like this in an iPhone app? I need to input a number but I want something like this, not a simple UITextField. How? Thanks!
Joaquin McCoy
  • 425
  • 2
  • 7
  • 16
0
votes
3 answers

batch numberpad typing game error v2

I am creating a typing game for my office for whoever would like to try and improve their numberpad typing skill. My code keeps score, if the input is correct or incorrect, and with help from the stackoverflow community (the great Compo), my code…
Slovakolarik
  • 17
  • 1
  • 5
0
votes
2 answers

numberpad typing game error

I am trying to create a number typing game to help train me and whoever else of my coworkers to see a number and type it faster without error. So I decide to make a quick game in notepad++, because im also trying to make CYOA (choose your own…
Slovakolarik
  • 17
  • 1
  • 5
0
votes
2 answers

how to assign a key (QtCore.Qt.Key_1) to a button in python. a numeric pad

i have this numpad, i would like to make every numbered button to write its coresponding number on the line above. For example if i enter 1234 by presing on the buttons the same sequence to be displayed on the line. i'm using pyqt4 with qt…
user7183355