Click here to Skip to main content
15,907,687 members
Home / Discussions / C#
   

C#

 
GeneralRe: string array Pin
SimonS26-Mar-02 21:48
SimonS26-Mar-02 21:48 
GeneralRe: string array Pin
Mazdak26-Mar-02 22:09
Mazdak26-Mar-02 22:09 
Generalbackup Pin
BLaZiNiX26-Mar-02 19:01
BLaZiNiX26-Mar-02 19:01 
GeneralRe: backup Pin
James T. Johnson26-Mar-02 23:10
James T. Johnson26-Mar-02 23:10 
GeneralRe: backup Pin
BLaZiNiX27-Mar-02 15:35
BLaZiNiX27-Mar-02 15:35 
GeneralRe: backup Pin
James T. Johnson27-Mar-02 18:09
James T. Johnson27-Mar-02 18:09 
QuestionDynamically assign QueryString to SRC? Pin
26-Mar-02 13:02
suss26-Mar-02 13:02 
AnswerRe: Dynamically assign QueryString to SRC? Pin
David Wengier26-Mar-02 13:18
David Wengier26-Mar-02 13:18 
GeneralRe: Dynamically assign QueryString to SRC? Pin
26-Mar-02 13:44
suss26-Mar-02 13:44 
GeneralRe: Dynamically assign QueryString to SRC? Pin
David Wengier26-Mar-02 13:52
David Wengier26-Mar-02 13:52 
GeneralMatlab & C# Pin
26-Mar-02 8:25
suss26-Mar-02 8:25 
QuestionCapturing Cursor Keys? Pin
Zombies with Coffee, LLC26-Mar-02 7:54
professionalZombies with Coffee, LLC26-Mar-02 7:54 
AnswerRe: Capturing Cursor Keys? Pin
James T. Johnson26-Mar-02 8:11
James T. Johnson26-Mar-02 8:11 
GeneralRe: Capturing Cursor Keys? Pin
Zombies with Coffee, LLC26-Mar-02 8:17
professionalZombies with Coffee, LLC26-Mar-02 8:17 
Thanks James. Works great now.

Here's the code I used to override IsInputKey

protected override bool IsInputKey( Keys keyData )
{
bool bIsInputKey = true;

switch( keyData )
{
case Keys.Left: break;
case Keys.Right: break;
case Keys.Down: break;
case Keys.Up: break;
default:
bIsInputKey = base.IsInputKey( keyData );
break;
}

return bIsInputKey;
}

QuestionDynamic C# dll components? Pin
Filip Strugar26-Mar-02 7:32
Filip Strugar26-Mar-02 7:32 
AnswerRe: Dynamic C# dll components? Pin
Filip Strugar26-Mar-02 7:42
Filip Strugar26-Mar-02 7:42 
GeneralRe: Dynamic C# dll components? Pin
James T. Johnson26-Mar-02 7:46
James T. Johnson26-Mar-02 7:46 
GeneralRe: Dynamic C# dll components? Pin
Filip Strugar26-Mar-02 8:13
Filip Strugar26-Mar-02 8:13 
GeneralRe: Dynamic C# dll components? Pin
James T. Johnson26-Mar-02 12:35
James T. Johnson26-Mar-02 12:35 
GeneralRe: Dynamic C# dll components? Pin
Filip Strugar28-Mar-02 7:39
Filip Strugar28-Mar-02 7:39 
GeneralDeriving combobox Pin
Marc L'Ecuyer26-Mar-02 5:05
Marc L'Ecuyer26-Mar-02 5:05 
GeneralBitmaps disappearing Pin
26-Mar-02 4:45
suss26-Mar-02 4:45 
GeneralRe: Bitmaps disappearing Pin
David Wengier26-Mar-02 10:16
David Wengier26-Mar-02 10:16 
QuestionHow I can Make A TreeView with checkedBoxes? Pin
gicio25-Mar-02 23:30
gicio25-Mar-02 23:30 
AnswerRe: How I can Make A TreeView with checkedBoxes? Pin
26-Mar-02 1:04
suss26-Mar-02 1:04 

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.