Click here to Skip to main content
15,887,596 members
Home / Discussions / C#
   

C#

 
GeneralRe: ONE CLICK Pin
Ista13-Aug-03 15:27
Ista13-Aug-03 15:27 
GeneralHey whats THE CODE to cal the MAIN thread Pin
Ista13-Aug-03 13:33
Ista13-Aug-03 13:33 
GeneralRe: Hey whats THE CODE to cal the MAIN thread Pin
Furty13-Aug-03 14:24
Furty13-Aug-03 14:24 
GeneralRe: Hey whats THE CODE to cal the MAIN thread Pin
Ista13-Aug-03 15:23
Ista13-Aug-03 15:23 
GeneralSort Array Pin
Mazdak13-Aug-03 9:26
Mazdak13-Aug-03 9:26 
GeneralRe: Sort Array Pin
Ista13-Aug-03 13:27
Ista13-Aug-03 13:27 
GeneralKeyDown for arrows Pin
S O S13-Aug-03 6:23
S O S13-Aug-03 6:23 
GeneralRe: KeyDown for arrows Pin
Nnamdi Onyeyiri13-Aug-03 7:17
Nnamdi Onyeyiri13-Aug-03 7:17 
you have to override the IsInputKey method, so that it returns true with the key arrows.
protected override bool IsInputKey(Keys key)
{
   if (key.KeyCode == Keys.Up) return true;
   else if (key.KeyCode == Keys.Down) return true;
   else if (key.KeyCode == Keys.Left) return true;
   else if (key.KeyCode == Keys.Right) return true;
   else return base.IsInputKey(key);
}


Another Post by NnamdiOnyeyiri l Website
GeneralRe: KeyDown for arrows Pin
S O S13-Aug-03 8:27
S O S13-Aug-03 8:27 
GeneralRe: KeyDown for arrows Pin
Nnamdi Onyeyiri13-Aug-03 8:40
Nnamdi Onyeyiri13-Aug-03 8:40 
GeneralRe: KeyDown for arrows Pin
Ista13-Aug-03 13:19
Ista13-Aug-03 13:19 
GeneralRe: KeyDown for arrows Pin
Ista13-Aug-03 13:21
Ista13-Aug-03 13:21 
Generaldatagrid Pin
mdolby13-Aug-03 5:26
mdolby13-Aug-03 5:26 
GeneralRe: datagrid Pin
Ista13-Aug-03 13:24
Ista13-Aug-03 13:24 
GeneralRe: datagrid Pin
Ista13-Aug-03 13:25
Ista13-Aug-03 13:25 
Generalupdating treeview from another thread Pin
Ista13-Aug-03 5:00
Ista13-Aug-03 5:00 
GeneralRe: updating treeview from another thread Pin
Furty13-Aug-03 13:41
Furty13-Aug-03 13:41 
GeneralRe: updating treeview from another thread Pin
Ista14-Aug-03 4:14
Ista14-Aug-03 4:14 
GeneralRe: updating treeview from another thread Pin
Ista14-Aug-03 6:50
Ista14-Aug-03 6:50 
GeneralXPath question Pin
Mazdak13-Aug-03 0:55
Mazdak13-Aug-03 0:55 
GeneralRe: XPath question Pin
Kannan Kalyanaraman13-Aug-03 1:07
Kannan Kalyanaraman13-Aug-03 1:07 
GeneralRe: XPath question Pin
Mazdak13-Aug-03 1:13
Mazdak13-Aug-03 1:13 
GeneralRe: XPath question Pin
Anonymous13-Aug-03 4:42
Anonymous13-Aug-03 4:42 
GeneralRe: XPath question Pin
Arjan Einbu13-Aug-03 5:05
Arjan Einbu13-Aug-03 5:05 
GeneralRe: XPath question Pin
Mazdak13-Aug-03 5:43
Mazdak13-Aug-03 5:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.