active questions tagged keydown - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T05:43:42Z http://stackoverflow.com/feeds/tag/keydown http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1871373/wpf-keydown-and-keyup-events 0 WPF KeyDown and Keyup events Allen Ho 2009-12-09T03:15:20Z 2009-12-09T03:37:07Z <p>Hi when I do in one of my user controls in a WPF application, this.KeyUp += new System.Windows.Input.KeyEventHandler(MultipleControlViewer_KeyUp); or this.KeyDown += new System.Windows.Input.KeyEventHandler(MultipleControlViewer_KeyUp); or this.AddHandler(Window.KeyDownEvent, new System.Windows.Input.KeyEventHandler(MultipleControlViewer_KeyUp), true); I can never get the key events to fire when pusing a key on the keyboard. Would anyone know why? Thanks</p> http://stackoverflow.com/questions/1853937/keycode-and-keyboard-layout-and-language 0 KeyCode and keyboard layout and language Krugar 2009-12-05T23:55:49Z 2009-12-06T13:57:06Z <p>I need to include the <em>asterisk</em> as an allowable entry on a text box.</p> <p>How can I test for this key under the KeyDown event regardless of the keyboard layout and language?</p> <p>Ignoring the numeric keypad, with the Portuguese QWERTY layout this key can be tested through <code>Keys.Shift | Keys.Oemplus</code>. But that will not be the case for other layouts or languages. </p> http://stackoverflow.com/questions/1155772/how-to-handle-text-edition-from-the-keydown-event 1 How to handle text edition from the KeyDown event? tinmaru 2009-07-20T20:25:11Z 2009-11-27T10:33:01Z <p>I would like to edit a graphical text (not a TextBox control) through the KeyDown event. I need to update my text string according to the KeyEventArgs (key value and modifier). I using a french keyboard for now but in the future I would like to support different keyboard layout. How can I guess the caractere typed depending the key value, the modifier and the culture info?</p> <p>I don't want to use the KeyPress event for technical reason.</p> http://stackoverflow.com/questions/1721458/focusable-panel-in-wpf 1 Focusable Panel in WPF Mart 2009-11-12T11:03:22Z 2009-11-12T13:48:23Z <p>I need to make a Panel focusable in WPF, so that it captures keyboard events just as any other focusable control:</p> <ul> <li>The user clicks inside the Panel to give it focus</li> <li>any <code>KeyDown</code> or <code>KeyUp</code> event is raised at panel level</li> <li>if another focusable element outside the panel is clicked, the panel loses focus</li> </ul> <p>I experimented <code>FocusManager.IsFocusScope="True"</code> on the Panel and <code>myPanel.Focus()</code> returns <code>true</code> but the Panel KeyUp event handler still isn't called.</p> <p>Am I missing something?</p> http://stackoverflow.com/questions/1717897/jquery-keydown-on-div-not-working-in-firefox 1 jQuery - keydown() on div not working in Firefox Wayne Koorts 2009-11-11T20:38:48Z 2009-11-11T21:00:33Z <p>I have the following example code, which should pop up an alert when the div is in focus and a key is pressed. This does what I expect in IE 7, but not in Firefox 3.5.5. What am I doing wrong?</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;JS test&lt;/title&gt; &lt;script type="text/javascript" src="jquery-1.3.2.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $("#testdiv").keydown(function(event) { alert("Pressed " + event.keyCode); }); }); &lt;/script&gt; &lt;style type="text/css"&gt; #testdiv { width: 50; height: 50; background-color: red; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="testdiv"&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p><strong>EDIT</strong>: I've just tried replacing <code>keydown</code> with <code>keypress</code> and <code>keyup</code> and those don't work either. Incidentally, I also made sure that my "Find as you type" setting is turned off just in case.</p> http://stackoverflow.com/questions/1191479/how-do-i-capture-the-print-screen-key 0 How do i capture the Print Screen key? paperless 2009-07-28T01:21:48Z 2009-10-30T14:00:38Z <p>Hello everyone.</p> <p>I my program i need to capture when the Print Screen key is pressed down but it is not working (however it works with other keys).</p> <p>I guess this has something to do with windows hijacking my authority and since im still new at this i'd love to know how i can get around this issue.</p> <p>Here's my current code:</p> <pre><code>namespace Boom_Screenshot_ { /// &lt;summary&gt; /// Interaction logic for Window1.xaml /// &lt;/summary&gt; public partial class Window1 : Window { //SETTINGS Key TRIGGER_KEY = Key.PrintScreen; public Window1() { InitializeComponent(); } private void Window_KeyDown(object sender, KeyEventArgs e) { if (e.Key == TRIGGER_KEY) { MessageBox.Show("'PrintScreen' was pressed."); } } } </code></pre> <p>}</p> http://stackoverflow.com/questions/1646998/up-down-left-and-right-arrow-are-not-catch-by-keydown 2 Up, Down, Left and Right arrow are not catch by KeyDown tinmaru 2009-10-29T22:36:47Z 2009-10-29T23:01:51Z <p>I am building an application where all the key input must be handled by the windows itself.</p> <p>I set tabstop to false for each control witch could grab the focus except a panel (but I don't know if it has effect).</p> <p>I set KeyPreview to true and I am handling the KeyDown event on this form.</p> <p>My problem is that sometimes the arrow key aren't responsive anymore:</p> <ul> <li><p>The keydown event is not fired when I pressed only an arrow key.</p></li> <li><p>The keydown event is fired if I press an arrow key with the control modifier.</p></li> </ul> <p>Have you an idea why my arrow key suddenly stop firing event?</p> http://stackoverflow.com/questions/902767/c-tetris-clone-cant-get-block-to-respond-properly-to-arrow-key-combinations 1 C# - Tetris clone - Can't get block to respond properly to arrow key combinations Daniel Waltrip 2009-05-24T00:14:59Z 2009-10-23T13:34:34Z <p>I'm working on programming a Tetris game in Visual C# 2005. This is the most extensive program I have designed yet.</p> <p>I create a shape class and a block class to control the location, movement, and display of the different Tetris pieces. I have moveDown(), moveLeft(), and moveRight() functions for each shape (and corresponding canMoveDown(), canMoveLeft(), canMoveRight() boolean functions that verify it's ok to move). This is all working beautifully.</p> <p>I want to use the down, right, and left arrow keys to let the user move the block around, in addition to using a timer to have the shape automatically fall one row every so many milliseconds.</p> <p>I am using the KeyDown event handler to check when the user presses the down, left, and right arrow key. This isn't so hard. The problem is that I want to allow for diagonal motion, and I want it work as smoothly possible. I have tried a bunch of different ways of approaching this problem, with varying levels of success. But I can't get it quite right...</p> <p>My most successful approach was to use three boolean variables to keep track of when the down, left, and right arrow keys are being held down. I would set the booleans to true in the KeyDown event, and to false in the KeyUp event. In the KeyDown event I would also tell the block how to move, using the boolean variables to check which combination was currently being pressed. It worked really well, except for one thing.</p> <p>If I pressed one of the arrow keys and held, then pressed a second arrow key and then released the second key, the block would stop moving altogether, instead of continuing to move in the direction of the first arrow key which hasn't been released yet. I think this is because the second key triggered the KeyDown event, and upon its release the KeyUp event was fired, and the KeyDown event stopped firing completely, even though the first key is fired.</p> <p>I cannot for the life me of find a satisfactory solution to this problem.</p> <p>Any help would be greatly appreciated =)</p> http://stackoverflow.com/questions/1338483/detecting-value-of-input-text-field-after-a-keydown-event-in-the-text-field 1 Detecting "value" of input text field after a keydown event in the text field? inktri 2009-08-27T01:55:06Z 2009-10-23T07:55:57Z <p>So my site has an input box, which has a onkeydown event that merely alerts the value of the input box. </p> <p>Unfortunately the value of the input does not include the changes due to the key being pressed. </p> <p>For example for this input box:</p> <pre><code>&lt;input onkeydown="alert(this.value)" type="text" value="cow" /&gt; </code></pre> <p>The default value is "cow". When you press the key "s" in the input, you get an alert("cow") instead of an alert("cows"). How can I make it alert("cows") <strong>without using onkeyup</strong>? I don't want to use onkeyup because it feels less responsive. </p> <p>One partial solution is to detect the key pressed and then append it to the input's value, but this doesn't work in all cases such as if you have the text in the input highlighted and then you press a key. </p> <p>Anyone have a complete solution to this problem? </p> <p>Thanks</p> http://stackoverflow.com/questions/917034/keydown-in-flex-flex 0 keydown in flex Flex fp 2009-05-27T17:30:55Z 2009-10-22T10:00:03Z <p>I have an small application in flex in which I have defined 2 canvases. On one of them I added controls and the other one is used to draw something and no controls are added:</p> <pre><code>&lt;mx:Canvas x="0" y="80" width="100%" height="520%" id="Canvas1"/&gt; &lt;mx:Canvas x="0" y="0" width="100%" height="80" id="Canvas2"/&gt; </code></pre> <p>I add an keydown event handled to the application but it is triggered only after I click with the mouse on the first Canvas(the one where controls have been added). Otherwise the event is not triggered when keys are presses.</p> <p>I've tried several things: to set focus on the second canvas, to add the keydown handler to the application(this),stage, canvas... Unfortunately I didn't find a solution to trigger keydown no matter where the focus is.</p> http://stackoverflow.com/questions/432814/why-does-contenteditable-element-reject-the-enter-key 1 Why does contentEditable element reject the Enter key? splintor 2009-01-11T12:16:11Z 2009-10-20T06:00:02Z <p>Hi,</p> <p>I'm using an application that embeds IE control to show content. I change that content to contain a <code>&lt;div contentEditable="True"&gt;Hello World&lt;/div&gt;</code> element. This works well and I can edit the content of this div, but pressing Enter is rejected with a beep.</p> <p>When I add a textarea element to that page the Enter key works and I can add lines, but not in the contentEditable element.</p> <p>When I attach event to that element I see that pressing the Enter key triggers a keyDown event, but not a keyPress.</p> <p>Anyone has an idea what might cause it?</p> <p>Thanks,<br>splintor</p> http://stackoverflow.com/questions/1495092/convert-received-keys-in-previewkeydown-to-a-string 1 Convert received keys in PreviewKeyDown to a string Ragha J 2009-09-29T21:35:48Z 2009-10-05T10:52:59Z <p>I am using PreviewKeyDown event on a window to receive all the keys from a barcode scanner. The KeyEventArgs is an enumeration and does not given me the actual string. I dont want to use TextInput as some of the keys may get handled by the control itself and may not bubble up to the TextInput event. </p> <p>I am looking for a way to convert the the Keys that I get in PreviewKeyDown to actual string. I looked at the InputManager, TextCompositionManager etc but I am not finding a way where I give the list of keys and it comes back with a string. TextCompositionManager or something must be converting these Keys to a string which is what is available in TextInput.</p> http://stackoverflow.com/questions/1495335/previewtextinput-is-not-fired-when-the-focus-is-on-checkbox-handling-the-previe 0 PreviewTextInput is not fired when the focus is on checkbox / Handling the PreviewTextInput in Main window and not allowing child control steal the characters Ragha J 2009-09-29T22:41:03Z 2009-09-30T20:37:08Z <p>I have the following code. The window has a textbox and a checkbox. If I have focus on the anything other than checkbox and type something like 123-456 then for each character PreviewKeyDown and PreviewTextInput are firing. </p> <p>But if I have the focus to checkbox and then type 123-456 then the PreviewKeyDown is fired for all the characters whereas PreviewTextInput fires only for 123456 and doesn't fire for '-'. The hyphen is being handled by the checkbox and not getting passed to PreviewTextInput. Is there a way to get the hyphen to PreviewTextInput?</p> <pre><code> public Window1() { InitializeComponent(); TextCompositionManager.AddTextInputHandler(this, new TextCompositionEventHandler(Window_PreviewTextInput)); } private void Window_PreviewKeyDown(object sender, System.Windows.Input.KeyEventArgs e) { } private void Window_PreviewTextInput(object sender, TextCompositionEventArgs e) { } </code></pre> http://stackoverflow.com/questions/549488/adding-event-handler-to-an-iframe-using-jquery 0 Adding event handler to an iframe using JQuery tobby 2009-02-14T18:19:55Z 2009-09-30T01:12:08Z <p>I want to assign a keydown event handler to an iframe. Something similar to the pure JS:</p> <pre><code>document.getElementById('iframe_id').contentWindow.addEventListener('keydown',funcName, true); </code></pre> <p>I tried:</p> <pre><code>$(document.getElementById('iframe_id').contentWindow).keydown( function() { // my func }); </code></pre> <p>But it does not work.. Please help!</p> http://stackoverflow.com/questions/1449017/jquery-binding-keydown-same-behavior-except-for-one 0 jQuery : binding keydown, same behavior except for one Kris-I 2009-09-19T17:21:21Z 2009-09-20T12:45:12Z <p>Hello,</p> <p>I have some input (text type). I'd like to the same behavior for all except for one.</p> <p>I tried this :</p> <pre><code>$(document).ready(function() { $("input[type=text]").bind('keydown', function(e) { .... }); $("#MyOtherInput").keydown(function(e) { ..... }); }); </code></pre> <p>MyOtherInput is the input type texte with a specific behavior ....</p> <p>Could you help me ?</p> <p>Thanks,</p> http://stackoverflow.com/questions/1434867/multiple-modifier-keys-in-c 2 Multiple Modifier Keys in C# jsmith 2009-09-16T19:00:07Z 2009-09-16T19:08:04Z <p>I am betting this is a really simple question to answer, I just can't get such a simple thing to work.</p> <p>I use a keydown event to detect keys pressed and have several common key combination's to do various operations.</p> <pre><code>if (e.KeyCode == Keys.C &amp;&amp; e.Modifiers == Keys.Control &amp;&amp; e.Modifiers == Keys.Shift) { //Do work } else if (e.KeyCode == Keys.V &amp;&amp; e.Modifiers == Keys.Control) { //Paste } </code></pre> <p>For some reason or other the key combination where I am hitting ctrl+shift+c is not working. I have re ordered them, and placed it at the top thinking it might be interference from the ctrl+c, and even removed the ctrl+c to see if it was causing a problem. Yet it still does not work. I know it's probably something very simple, but can't quite grasp what it is. All of my 1 modifier + 1 key combination's work fine, as soon as I add a second modifier is when it seems to not work. </p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/1380815/get-textbox-value-on-keydown-multilingual-support 0 Get textbox value on keydown + Multilingual support LibraRocks 2009-09-04T18:25:18Z 2009-09-05T02:16:22Z <p>Hi, I want get the value of the text including the character on the keydown event.</p> <pre><code>$(".searchfield").keydown(function(e) { if (e.which &gt;= 32 || e.which &lt; 127) { var c = String.fromCharCode(e.which); callSearch($(this).val() + c)); } }); </code></pre> <p>It works good for characters, numbers and all the essential characters. 32-127 ASCII range.</p> <p>I am not sure if this will work if the textbox has a multilingual input. Non english characters. </p> <p>Can someone share their experience please?</p> <p>Thanks,</p> http://stackoverflow.com/questions/1363912/keydown-event-for-entire-application-vb-net 1 Keydown event for entire application VB .Net unknown (yahoo) 2009-09-01T18:28:17Z 2009-09-01T18:35:04Z <p>I want to make it so that no matter which control has focus, it will do my event. So that I dont have to write a keydown event for all 137 of my objects. Is this possible?</p> <p>Thanks</p> http://stackoverflow.com/questions/1341199/how-to-make-something-when-user-press-enter-on-the-keyboard -3 how to make something when user press enter on the keyboard [closed] unknown (google) 2009-08-27T13:43:57Z 2009-08-28T08:56:56Z <p>can anyone help, please? this is in c# 3</p> http://stackoverflow.com/questions/1298640/c-trying-to-capture-the-keydown-event-on-a-form 0 C# trying to capture the KeyDown event on a form Patrick 2009-08-19T09:06:53Z 2009-08-19T13:43:39Z <p>Hello!</p> <p>I am creating a small game, the game is printed onto a panel on a windows form. Now i want to capture the keydown event to see if its the arrow keys that has been pressed, the problem however is that i can't seem to capture it.</p> <p>Let me explain, on the form i have 4 buttons and various other controls and if the user for instance press one of the buttons (to trigger a game event) then the button has focus and i can't capture the movements with the arrow keys.</p> <p>I tried something like</p> <pre><code>private void KeyDown(KeyEventArgs e) { if (e.KeyCode == Keys.Left) { game.MovePlayer(DonutWarsLibrary.GameObjects.Direction.E); game.DrawObjects(panel1.CreateGraphics()); } else if (e.KeyCode == Keys.Right) { game.MovePlayer(DonutWarsLibrary.GameObjects.Direction.W); game.DrawObjects(panel1.CreateGraphics()); } else if (e.KeyCode == Keys.Up) { game.MovePlayer(DonutWarsLibrary.GameObjects.Direction.N); game.DrawObjects(panel1.CreateGraphics()); } else if (e.KeyCode == Keys.Down) { game.MovePlayer(DonutWarsLibrary.GameObjects.Direction.S); game.DrawObjects(panel1.CreateGraphics()); } } </code></pre> <p>and then when the form key down event was pressed, i used this</p> <pre><code>private void MainForm_KeyDown(object sender, KeyEventArgs e) { KeyDown(e); } </code></pre> <p>I also added keydown for the buttons and the various other controls on the windows form, but i am not getting any response back. I have setup a breakpoint inside the function to see if it's being called, but that breakpoint never triggers?</p> <p>Any ideas?</p> <p>The most optimal was to have a general KeyDown event that triggers (regardless of what control that currently has focus) and then calls the KeyDown method.</p> http://stackoverflow.com/questions/1265634/keydown-recognizing-multiple-keys 3 KeyDown : recognizing multiple keys Kai 2009-08-12T11:40:02Z 2009-08-12T11:46:32Z <p>How can I determine in KeyDown that Ctrl + Up was pressed.</p> <pre><code>private void listView1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Control &amp;&amp; e.KeyCode == Keys.Up) { //do stuff } } </code></pre> <p>can't work, because never both keys are pressed exactly in the same second. You always to at first the Ctrl and then the other one... </p> http://stackoverflow.com/questions/1233800/javascript-sending-key-codes-to-a-textarea-element 1 Javascript sending key codes to a <textarea> element Andrey 2009-08-05T14:54:11Z 2009-08-05T16:10:41Z <p>Hi,</p> <p>I can't figure out how to trigger a keydown event on a textarea element, e.g. imagine i have two textarea elements and when i type something in the first one, I want the second box to show the typing as well, but for a certain reason I have to do it via events. This is what I tried and it doesn't work:</p> <pre><code>&lt;script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"&gt;&lt;/script&gt; &lt;textarea id='first'&gt;&lt;/textarea&gt; &lt;textarea id='second'&gt;&lt;/textarea&gt; &lt;script&gt; jQuery("#first").keydown(function(event) { var keydown = jQuery.Event("keydown") keydown.keyCode = event.keyCode keydown.which = event.which jQuery("#second").trigger(keydown) }) &lt;/script&gt; </code></pre> <p>Any ideas how could I achieve that?</p> http://stackoverflow.com/questions/953736/how-do-i-capture-keystrokes-in-a-silverlight-application 0 How do I capture keystrokes in a Silverlight application? Jeff Blankenburg 2009-06-05T00:14:34Z 2009-07-23T23:23:49Z <p>I am trying to capture any keystroke that happens inside my Silverlight 2 application. There are not any input fields, I'm writing a game, and need to know which of the arrow keys are being pressed. My best guesses at how to capture these through an event handler are unsuccessful. Any recommendations?</p> http://stackoverflow.com/questions/1089659/keydown-keypress-and-indexing 0 KeyDown/KeyPress and Indexing INeedChineseFood 2009-07-06T23:23:24Z 2009-07-07T06:27:58Z <p>Hi everyone. Compelete noob working on my first app in C#. Here is what I am trying to do....</p> <p>A user is going to enter an "ID" into a text box, all numbers. I have been trying to figure out how to trap a leading zero in the ID, for instance:</p> <p>5031 is accepteble for ID 0827 not what we want</p> <p>Basically, zero cannot be the leading number in the series. I thought, perahps this could be trapped via an index but I am stumped. Any thoughts????</p> <p>-Confused Trapper</p> http://stackoverflow.com/questions/1069433/-void-keydown-nsevent-event-does-not-work 1 - (void) keyDown: (NSEvent *) event does not work.. lance 2009-07-01T14:28:00Z 2009-07-01T14:40:36Z <p>Below is the sample code. </p> <pre><code>- (void) keyDown: (NSEvent *) event { NSString *chars = [event characters]; unichar character = [chars characterAtIndex: 0]; if (character == 27) { NSLog (@"ESCAPE!"); } } </code></pre> <p>Should I need to set any delegate in InterfaceBuilder or any kinda binding?? </p> <p>Help Appreciated...</p> http://stackoverflow.com/questions/1012517/prevent-keydown-event-from-procesing-to-next-form 0 Prevent KeyDown event from procesing to next form Johan 2009-06-18T13:02:30Z 2009-06-18T14:41:20Z <p>HI, I have a form in C# app. On this form I capture a KeyDown event Alt+U which will open a second form. In the second form I have a toolStripButton with shortcutkey Alt+U (the same which I used to open the form with) which prints a document. Now, my problem is when I open the second form It will automatically trigger the event of clicking toolstripbutton since it has the same shortcutkey as I used to open the form with. How can I prevent this from happen.</p> <p>Regards Johan</p> http://stackoverflow.com/questions/649441/handling-key-events-on-webbrowser-control 0 Handling key events on WebBrowser control Jen 2009-03-16T06:31:40Z 2009-06-17T10:40:24Z <p>I am using the <code>WebBrowser</code> control in a C# application and want to handle all key events while the <code>WebBrowser</code> has the focus, regardless what individual content element (input field, link, etc.) is focused. I tried to simply add an event handler to browser controls <code>KeyDown</code> event, but this does not work. I don't want to explicitly hook a handler to each focusable <code>HtmlElement</code>.</p> <p>How can I receive all key events <em>before</em> they are passed to the browser or its content elements?</p> http://stackoverflow.com/questions/347724/how-can-i-capture-keydown-event-on-a-wpf-page-or-usercontrol-object 1 How can I capture KeyDown event on a WPF Page or UserControl object? Sailing Judo 2008-12-07T16:07:07Z 2009-06-11T11:10:38Z <p>I have a Page with a UserControl on it. If the user presses Esc while anywhere on Page I want to handle.</p> <p>I thought this would be as easy as hooking up the PreviewKeyDown event, testing for the Esc key, and then handling it. However, when I placed I breakpoint in the event handler I found it was never getting called. I thought perhaps the UserControl might be getting hit, so I tried PreviewKeyDown there... same result.</p> <p>Does anyone know the proper place to test for a KeyDown or PreviewKeyDown on a Page object?</p> http://stackoverflow.com/questions/942037/how-do-i-detect-the-delete-key-in-my-field-subclass 2 How do I detect the 'delete' key in my Field subclass? MikeyB 2009-06-02T21:39:17Z 2009-06-09T18:46:11Z <p>I'm trying to detect and override the Delete key on the Blackberry keyboard.</p> <p>For some reason, it never makes it inside my case statement as when it hits that point:</p> <pre><code>Keypad.key(keycode) == 8 Keypad.KEY_DELETE == 127 </code></pre> <p>What's my error?</p> <pre><code>public class MyField extends ListField implements KeyListener { // ... /** Implementation of KeyListener.keyDown */ public boolean keyDown(int keycode, int time) { boolean retval = false; switch (Keypad.key(keycode)) { /* DELETE - Delete the timer */ case Keypad.KEY_DELETE: if (Keypad.status(keycode) == KeyListener.STATUS_SHIFT) { _myDeleteCmd.run(); retval = true; } break; default: retval = super.keyDown(keycode, time); } return retval; } </code></pre> http://stackoverflow.com/questions/898961/silverlight-textbox-overrides 0 Silverlight textbox overrides jvcoach23 2009-05-22T17:19:10Z 2009-05-26T16:26:26Z <p>I'm trying to get a textbox keydown event to trap the backspace key down event. I have that working by adding a Class that overrides the textbox. What i don't know how to do is have that communicate with the class where the textbox is in the user control.</p> <p>When a user types in the text box... say abcd or backspace, i need to update something on the usercontrol. let's just say i want to have something that displays how many characters are in the textbox. can someone help me with that. Here is what i have so far</p> <pre><code>Option Strict On Imports System.Text.RegularExpressions Partial Public Class Page Inherits UserControl Public Sub New() InitializeComponent() Dim textbox As New MyTextBox() With {.Width = 300, .Height = 100} LayoutRoot.Children.Add(textbox) End Sub End Class Public Class MyTextBox Inherits TextBox Protected Overrides Sub OnKeyDown(ByVal e As KeyEventArgs) MyBase.OnKeyDown(e) If e.Key = Key.Back Then e.Handled = True MyBase.OnKeyDown(e) ElseIf e.Key = Key.Delete Then e.Handled = True MyBase.OnKeyDown(e) End If End Sub End Class </code></pre> <p>thanks shannon</p>