Click here to Skip to main content
15,897,187 members
Home / Discussions / C#
   

C#

 
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 
GeneralRe: How I can Make A TreeView with checkedBoxes? Pin
gicio26-Mar-02 3:38
gicio26-Mar-02 3:38 
GeneralPrint Preview Pin
Mazdak25-Mar-02 20:46
Mazdak25-Mar-02 20:46 
GeneralRe: Print Preview Pin
BLaZiNiX26-Mar-02 18:59
BLaZiNiX26-Mar-02 18:59 
GeneralEventWritten and Security Log Pin
25-Mar-02 11:02
suss25-Mar-02 11:02 
GeneralUser Control problems... Pin
Zombies with Coffee, LLC25-Mar-02 9:43
professionalZombies with Coffee, LLC25-Mar-02 9:43 
GeneralRe: User Control problems... Pin
David Wengier25-Mar-02 10:45
David Wengier25-Mar-02 10:45 

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.