Click here to Skip to main content
15,896,912 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Stupid CheckBox Behavior, please help!! Pin
digiwombat17-Feb-06 12:24
digiwombat17-Feb-06 12:24 
GeneralRe: Stupid CheckBox Behavior, please help!! Pin
Miguel Lopes17-Feb-06 14:27
Miguel Lopes17-Feb-06 14:27 
GeneralRe: Stupid CheckBox Behavior, please help!! Pin
George L. Jackson17-Feb-06 14:53
George L. Jackson17-Feb-06 14:53 
AnswerRe: Stupid CheckBox Behavior, please help!! Pin
peryMimon17-Nov-09 22:43
peryMimon17-Nov-09 22:43 
QuestionKill key strokes while hooked Pin
digiwombat16-Feb-06 18:31
digiwombat16-Feb-06 18:31 
QuestionRe: Kill key strokes while hooked Pin
George L. Jackson17-Feb-06 13:22
George L. Jackson17-Feb-06 13:22 
AnswerRe: Kill key strokes while hooked Pin
digiwombat17-Feb-06 13:33
digiwombat17-Feb-06 13:33 
GeneralRe: Kill key strokes while hooked Pin
George L. Jackson17-Feb-06 13:33
George L. Jackson17-Feb-06 13:33 
This might help: http://msdn2.microsoft.com/en-us/library/system.windows.forms.application.addmessagefilter.aspx[^]

<br />
static void Main() <br />
{<br />
    Application.AddMessageFilter(new TestMessageFilter());<br />
    Application.Run(new Form1());<br />
}<br />
<br />
public class TestMessageFilter : IMessageFilter <br />
{<br />
    public bool PreFilterMessage(ref Message m) <br />
    {<br />
        const int WM_KEYDOWN= 0x0100;<br />
        // Blocks all the messages relating to the left mouse button.<br />
        if (m.Msg==WM_KEYDOWN) <br />
        {<br />
            MessageBox.Show("KeyDown hitted"); <br />
        }<br />
<br />
        return false;<br />
    }<br />
}<br />
<br />


-- modified at 19:54 Friday 17th February, 2006
QuestionRe: Kill key strokes while hooked Pin
[Marc]17-Feb-06 13:46
[Marc]17-Feb-06 13:46 
AnswerRe: Kill key strokes while hooked Pin
digiwombat17-Feb-06 14:08
digiwombat17-Feb-06 14:08 
GeneralRe: Kill key strokes while hooked Pin
Dave Kreskowiak17-Feb-06 14:59
mveDave Kreskowiak17-Feb-06 14:59 
GeneralRe: Kill key strokes while hooked Pin
digiwombat17-Feb-06 17:16
digiwombat17-Feb-06 17:16 
GeneralRe: Kill key strokes while hooked Pin
digiwombat17-Feb-06 18:06
digiwombat17-Feb-06 18:06 
GeneralRe: Kill key strokes while hooked Pin
Dave Kreskowiak18-Feb-06 3:33
mveDave Kreskowiak18-Feb-06 3:33 
GeneralRe: Kill key strokes while hooked Pin
digiwombat18-Feb-06 10:40
digiwombat18-Feb-06 10:40 
Questionflash with .net Pin
Vineet Rajan16-Feb-06 6:15
Vineet Rajan16-Feb-06 6:15 
QuestionLetting the Parent handle the click Pin
Eric Schaefer16-Feb-06 2:35
Eric Schaefer16-Feb-06 2:35 
QuestionWindows Forms and 3rd Party API's Pin
robasmith15-Feb-06 9:27
robasmith15-Feb-06 9:27 
AnswerRe: Windows Forms and 3rd Party API's Pin
Dave Kreskowiak15-Feb-06 14:32
mveDave Kreskowiak15-Feb-06 14:32 
QuestionConverting from WinHelp to HTML Help Pin
ellenu15-Feb-06 6:40
ellenu15-Feb-06 6:40 
QuestionFlex Cell 2.0 .net Framework Pin
welbert14-Feb-06 15:03
welbert14-Feb-06 15:03 
AnswerRe: Flex Cell 2.0 .net Framework Pin
Judah Gabriel Himango15-Feb-06 8:12
sponsorJudah Gabriel Himango15-Feb-06 8:12 
QuestionThe request failed with HTTP status 401: Unauthorized Pin
Paul_Taylor14-Feb-06 14:12
Paul_Taylor14-Feb-06 14:12 
AnswerRe: The request failed with HTTP status 401: Unauthorized Pin
Paul_Taylor14-Feb-06 18:30
Paul_Taylor14-Feb-06 18:30 
Questionconsole.writeline windows application equivalent Pin
LuluSailor14-Feb-06 8:06
LuluSailor14-Feb-06 8:06 

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.