|
I have a Winforms dialog that contains among other controls a TextBox that allows a single line of input. I would like to allow the user to be able to press Ctrl-Backspace to delete an entire word. This is not the default behaviour with the out-of-the...
Started by Rhys Jones on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
PrevSpacePos - 1); textBox1.SelectedText = ""; } }
I would simulate Ctrl+Backspace by sending Ctrl+Shift' or 'whatever' that makes enable RichTextBox (CTRL + Backspace)able for TextBox, the problem can be solved)....
|
|
I'm working in an ASP.NET MVC Beta 1 project, and I've noticed that if I want to rename a file in the Solution Explorer pane, Ctrl+Backspace does not do what it should (delete the closest "word"), and I get a silly box character and annoyed.
I'm doing...
Started by tags2k on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Probably not.
Hope that works for you.
Press Assign and it should take over the shortcut combination.
For "File.Rename"
Put your cursor in the "Press shortcut keys" textbox and press Ctrl+Backspace.
|
|
Say I have a directory with one file in it mylongfilename.blahdeblah.txt now the keystrokes mv [tab] [tab] will result in mv mylongfilename.blahdeblah.txt mylongfilename.blahdeblah.txt on my command line
What I'd now like to do is type something in the...
Started by nevster on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
There's probably an emacs:
meta-backspace....
Set -o vi to get into vi mode.
'.' to it's current value, then Ctrl-w would delete back to the '.' instead of back to the preceeding space dw for delete word, or cw for change word.
|
Ask your Facebook Friends
|
The hotstring mechanism is obviously tracking what you type, both to see that you typed one of your hotstrings and to ensure that you typed a space (or some other non-letter character) just before your hotstring.
Problem is, this mechaism doesn't seem...
Started by cool-RR on
, 10 posts
by 5 people.
Answer Snippets (Read the full thread at autohotkey):
The hotstring history so it would work there.
|
|
When i press ctrl+backspace i some times get a small square inserted instead of the entire word erased. I tried to copy it here but it doesn't look this way in the textbox, it's just a plain white rectangle with a 1px black border.
It only happens in...
Started by ugh on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
The box is displayed because, as you've discovered, not all programs handle the ctrl+backspace key to delete the....
Days of the Internet Explorer group used the Brief editor, which uses Ctrl+Backspace as the shortcut .
|
|
I have a log file with backspace characters in it (^H). I'm looking through the file in Vim and it can be quite hard to see what's going on.
Ideally I'd like to be able to "apply" all the ^H on a given line/range so that I can see the final result.
I'...
Started by Draemon on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
How about the following functionTurn on the 'paste' option (using :set paste ), and then press dd i <CTRL-R> 1 <ESC> on each line that you want to apply....
Should work in most cases.
Anywhere in above line.
To do ctrl-v ...
|
|
Swapping backspace/capslock? I would have just asked Ripster about this, but apparently he isn't allowed/blocks all PM's.
I'm considering swapping the functionality of backspace and capslock with Autohotkey. Will the LED on my keyboard still light up ...
Started by GigaFlop on
, 15 posts
by 9 people.
Answer Snippets (Read the full thread at geekhack):
Last to train myself to learn a completely different layout, but something about Backspace (DeleteI use my caps key as a ctrl on....
I guess a few days of internet should help.
For what used to be backspace while writing this..
|
|
I've been aware of Steve Yegge's advice to swap Ctrl and Caps Lock for a while now, although I don't use Emacs. I've just tried swapping them over as an experiment and I'm finding it difficult to adjust. There are several shortcuts that are second nature...
Started by Sam Hasler on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
For emacs ctrl should be at caps lock - for vim the escape on a Kinesis Ergo Elan where my ctrl keys are under my thumbs, along with 2*alt, space, enter, backspace machines ....
To remember how each machine/keyboard is setup.
|
|
Is there any way to delete entries from the search box in the Mac version of Firefox? Not the suggestions, but the previous searches that come up automatically when I type into it. I am not trying to clear the whole history. I just want to delete individual...
Started by mikez302 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
There's a separate key labeled "Delete" to the rightShift-Delete is the key....
On a MacBook or other Apple keyboard, you should use Shift + Fn + Delete the enter/return key) is labeled "Backspace".
On a macbook keyboard.
|
|
On Tue, 11 Aug 2009 23:26:32 +0100, "Andy Trezise" <andy@trezise.f2s.com
How can I stop the backspace skipping to the previous field (textbox) when I
hit the leftmost position of the current textbox?
Started by Andy Trezise on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at omgili):
Maybe I've overlooked something but I
almost always use Ctrl-A, Delete; it's faster than holding!REMOVE
While Dan is correct, you should be aware of creating non-standard behavior,
here's some code that may help:
http://www....
|