Click here to Skip to main content
15,893,668 members
Home / Discussions / C#
   

C#

 
QuestionDirectX SDK help in visual c# express 2005 Pin
3Dizard15-Jan-06 7:38
3Dizard15-Jan-06 7:38 
AnswerRe: DirectX SDK help in visual c# express 2005 Pin
DigitalKing15-Jan-06 12:08
DigitalKing15-Jan-06 12:08 
QuestionRe: DirectX SDK help in visual c# express 2005 Pin
3Dizard17-Jan-06 3:42
3Dizard17-Jan-06 3:42 
QuestionHow to extract comments out of a C# code file? Pin
Muhammad Asim Khan Afridi15-Jan-06 6:22
Muhammad Asim Khan Afridi15-Jan-06 6:22 
AnswerRe: How to extract comments out of a C# code file? Pin
gnjunge15-Jan-06 7:38
gnjunge15-Jan-06 7:38 
AnswerRe: How to extract comments out of a C# code file? Pin
leppie15-Jan-06 9:25
leppie15-Jan-06 9:25 
QuestionHow to trap Alt + Down key in WndProc Pin
code_wiz15-Jan-06 5:28
code_wiz15-Jan-06 5:28 
AnswerRe: How to trap Alt + Down key in WndProc Pin
DigitalKing15-Jan-06 12:04
DigitalKing15-Jan-06 12:04 
Try this:
private const int VK_LEFT = 0x25;
private const int VK_UP = 0x26;
private const int VK_RIGHT = 0x27;
private const int VK_DOWN = 0x28;
private const int VK_MENU = 0x12;

private const int WM_SYSKEYDOWN = 0x0104;
private const int WM_SYSKEYUP = 0x0105;

protected override void WndProc(ref Message m)
{
    switch (m.Msg)
    {
        case WM_SYSKEYDOWN: //Some Alt+Key was pressed
            if (m.WParam.ToInt32() == VK_DOWN) //Alt+Down
            {
                MessageBox.Show("User pressed Alt+Down");
            }
            break;
    }

    base.WndProc(ref m);
}

Questiondeleting in use files Pin
hassan azizi15-Jan-06 3:56
hassan azizi15-Jan-06 3:56 
AnswerRe: deleting in use files Pin
Dave Kreskowiak15-Jan-06 4:19
mveDave Kreskowiak15-Jan-06 4:19 
AnswerRe: deleting in use files Pin
CodyGen15-Jan-06 4:26
CodyGen15-Jan-06 4:26 
GeneralRe: deleting in use files Pin
Dave Kreskowiak15-Jan-06 13:17
mveDave Kreskowiak15-Jan-06 13:17 
AnswerRe: deleting in use files Pin
Daniel Grunwald15-Jan-06 4:53
Daniel Grunwald15-Jan-06 4:53 
Questionhow to auto refresh listbox values Pin
batmanAgen15-Jan-06 3:02
batmanAgen15-Jan-06 3:02 
AnswerRe: how to auto refresh listbox values Pin
CodyGen15-Jan-06 4:15
CodyGen15-Jan-06 4:15 
GeneralRe: how to auto refresh listbox values Pin
batmanAgen15-Jan-06 4:22
batmanAgen15-Jan-06 4:22 
GeneralRe: how to auto refresh listbox values Pin
Ravi Bhavnani15-Jan-06 7:39
professionalRavi Bhavnani15-Jan-06 7:39 
Questionimages...JPEG or BITMAP Pin
sa maq14-Jan-06 23:00
sa maq14-Jan-06 23:00 
AnswerRe: images...JPEG or BITMAP Pin
Guffa14-Jan-06 23:20
Guffa14-Jan-06 23:20 
Questionc# program using a barcode scanner Pin
steve_rm14-Jan-06 20:18
steve_rm14-Jan-06 20:18 
AnswerRe: c# program using a barcode scanner Pin
Robert Rohde14-Jan-06 21:27
Robert Rohde14-Jan-06 21:27 
AnswerRe: c# program using a barcode scanner Pin
cjengler15-Jan-06 3:19
cjengler15-Jan-06 3:19 
AnswerRe: c# program using a barcode scanner Pin
Dave Kreskowiak15-Jan-06 4:16
mveDave Kreskowiak15-Jan-06 4:16 
GeneralRe: c# program using a barcode scanner Pin
steve_rm15-Jan-06 5:56
steve_rm15-Jan-06 5:56 
QuestionRandom number Pin
hung_ngole14-Jan-06 18:02
hung_ngole14-Jan-06 18:02 

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.