Visual C#
Architecture
Visual FoxPro
Visual C++
Game Technologies
SQL Server
Windows Live
VS Team System
Visual Studio
VS Express Editions
Visual Basic
.NET Development
Windows Forms
Smart Device
Windows Vista
Software Development Network>> Windows Forms>> OnKeyDown doesnt handle arrow?
OnKeyDown doesnt handle arrow?
Hot Topic
How to make UserControl as a container
Exception Handling
how to setfocus in VS .NET?
ConfigurationManager class not available in VS2005??
fill in default values in datagrid
Does anyone know of a good alternative to a datagrid?
How to show an index search like display in listbox?
Dropping controls in a custom UserControl
Problem DataBinding A MaskTextBox Control
DataGridView selected row color
Windows Forms
DataGridViewComboBoxColumn not displaying stored value
ClickOnce Install Error
Hiding an Application title bar using VB program ....
Tooltip on each item of the ComboBox dropdown list
Updating User Control within a panel
opening a form from a different application domain.
Help ... Disable Ctrl + Alt + Del in Window Xp using VB 6.0
Resizing a control problem in design mode
Allow Click Once Deployment only for registered Users
Dynamically Resizing a Control
OnKeyDown doesnt handle arrow?
OnKeyDown doesnt handle arrow
i'm overriding it in a usercontrol and i can't catch any arrow keys
if ( e.KeyCode == Keys.Up ) ...
i wanted to make some stuff repeat when the key is down
Answer this question
OnKeyDown doesnt handle arrow?
Guy_Dupre
Here is a good explanation how you can do this:
http://support.microsoft.com/Default.aspx id=320584
Alternatively, you can try to override the IsInputKey method, like described here:
http://bdn.borland.com/article/0,1410,30129,00.html
Gaurav Srivastava
i got around using ProcessDialogKey
i guess i will be overriding IsInputKey so that all keys all handled in 1 method
leandro Oliveira
To get OnKeyDown to handle the ArrowKeys, you'll need to override IsInputKey to return True if the KeyData is one of the Arrow keys.
OnKeyDown doesnt handle arrow?
Answer this question
OnKeyDown doesnt handle arrow?
Guy_Dupre
Alternatively, you can try to override the IsInputKey method, like described here: http://bdn.borland.com/article/0,1410,30129,00.html
Gaurav Srivastava
i guess i will be overriding IsInputKey so that all keys all handled in 1 method
leandro Oliveira