Questions tagged [backspace]

The backspace key on the keyboard (deletes the previous character)

354 questions
0
votes
4 answers

Android: Numeric key register backspace pressed

I have an EditText which only accepts numeric numbers defined like this:
7heViking
  • 7,137
  • 11
  • 50
  • 94
0
votes
1 answer

Detect back space for secure text field. Delegate method for detecting backspace key

Possible duplicate Detect backspace in UITextField I am having 5 secure password text field which accepts 1 character each. When you enter 1 character in a text field then the next textfield becomes first responder. The problem occurs when i press…
0
votes
1 answer

Output backspace character in Mac OS X

How can I move my backspace character to the beginning of string in console? I tried to use /r and /b but it doesn't work. P.S. I'm using Mac OS X. Sorry, but I hadn't found anything that could help me.
0
votes
3 answers

NextControl Focus using Enter and Previous Using Backspace in TextBox

I am using the following code for goto next and previous controls in windows form if (e.KeyCode == Keys.Enter)//Next { this.SelectNextControl(this.ActiveControl, true, true, true, true); } if (e.KeyCode == Keys.Back)//Previous { …
Suresh
  • 116
  • 9
0
votes
2 answers

Java - Allow using backspace in an editable JComboBox with Substance L&F

I am using Substance L&F and I have set a JComboBox to editable so that i can select the value that i want from its popup, or type a new value in its Editor. Typing a new value works fine, but if i want to delete a miss-typed letter from the Combo…
Brad
  • 4,457
  • 10
  • 56
  • 93
0
votes
1 answer

what can be the reasons for backspace not working in php?

the out put to this is coming as hello I am working on xampp as localhost $reply='{'; while($row=$this->conx->fetch_array($result)){ $user=new user(); …
vishu
  • 41
  • 4
0
votes
1 answer

Stop the backspace key from speeding up on test device

I'm implementing an app where the user is able to insert UIImageViews on top of the UITextView view. I also insert some characters beneath the UIImageViews to help with removing them via backspace. However, the problem is that when tested on a…
Priest
  • 242
  • 4
  • 11
0
votes
2 answers

GWT: Back Button working twice, both by browser and my GWT code

The Scenario: In my GWT webapp, I'm using KeyDownHandler to capture the event of user hitting backspace. Say, I'm using it on widget 'B', and hitting the backpsace when widget 'B' is focused should take me to widget 'A'. The Problem: On hitting…
0
votes
1 answer

TextField getting content cleared out on backspace

I have set-up in a storyboard a view that contents two textfields: one with secure option turn on and an other without. I have set-up the content of those textfields in the viewDidLoad method of the associated viewController. If I select the…
tiguero
  • 11,477
  • 5
  • 43
  • 61
0
votes
1 answer

Java KeyListener: Is the "Backspace" key pressed in KeyTyped

How do I tell if the user pressed the "Backspace" key from inside of the KeyTyped method? They value from arg0.getKeyChar() is not KeyEvent.CHAR_UNDEFINED, and arg0.getKeyCode() is KeyEvent.VK_UNDEFINED as it always will be inside of the KeyTyped…
Justin
  • 24,288
  • 12
  • 92
  • 142
0
votes
2 answers

Not sure how to get the 'final' output from a WinForm KeyPress event

I've got a simple winform. In it has a single TextBox control. In that, i've wired up the KeyPress event. Why? I'm trying to capture everything the user types in that textbox. But, when they hit return or enter, i then grab everything they've typed…
Pure.Krome
  • 84,693
  • 113
  • 396
  • 647
0
votes
1 answer

Get backspace key on iPad keyboard to not only clear the text one by one, but move the cursor to the previous textfield in the UIView

I have 30 UITextfields next to each other on a UIView. Each UITextfield represent a character of a word. A UITextfield allows for one character to be entered before it moves on to the next UITextfield. I want to use the iPad keyboard 'backspace' to…
user722905
  • 21
  • 1
  • 1
0
votes
1 answer

AutoCompleteTextView Backspace Issue

Anyone can pinpoint whats the problem in my code. My AutoCompleteTextView has strange behavior when I press the backspace. At first when I type on the Textbox it will show the correct values. For example I have a list of string namely "Pallanos",…
klaydze
  • 941
  • 14
  • 36
0
votes
2 answers

XML - backspace code

How do I add a backspace code to my code that will delete the o from Hello? For example, Hello would become Hell. I have tried to use , but it is illegal in XML.
Mario LIPCIK
  • 457
  • 2
  • 9
  • 24
0
votes
1 answer

uitextview delete text button touchhold to repeat

I have a uitextview that is editable.I am trying to add a backspace delete button that mimics the standard keyboard backspace/delete button operation.ie touchhold to repeat function.
user1725650
  • 7
  • 1
  • 4