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

C#

 
GeneralRe: Looping media Pin
ScottM16-Jun-09 4:09
ScottM16-Jun-09 4:09 
QuestionIs there a class for doing HTTP GET requests in c#.Net Pin
Roland Szigeti5-Jun-09 22:34
Roland Szigeti5-Jun-09 22:34 
AnswerRe: Is there a class for doing HTTP GET requests in c#.Net Pin
I Believe In GOD5-Jun-09 22:46
I Believe In GOD5-Jun-09 22:46 
AnswerRe: Is there a class for doing HTTP GET requests in c#.Net Pin
0x3c05-Jun-09 22:48
0x3c05-Jun-09 22:48 
AnswerRe: Is there a class for doing HTTP GET requests in c#.Net Pin
Garth J Lancaster5-Jun-09 22:50
professionalGarth J Lancaster5-Jun-09 22:50 
QuestionIn _keyDown I don't receive events for the arrows keys Pin
Roland Szigeti5-Jun-09 22:33
Roland Szigeti5-Jun-09 22:33 
AnswerRe: In _keyDown I don't receive events for the arrows keys Pin
I Believe In GOD5-Jun-09 22:45
I Believe In GOD5-Jun-09 22:45 
AnswerRe: In _keyDown I don't receive events for the arrows keys Pin
DaveyM695-Jun-09 23:49
professionalDaveyM695-Jun-09 23:49 
Just tried it on a form and it works for me:
public Form1()
{
    InitializeComponent();
    KeyPreview = true;
    KeyDown += new KeyEventHandler(Form1_KeyDown);
}

void Form1_KeyDown(object sender, KeyEventArgs e)
{
    Console.WriteLine(e.KeyData);
}


Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)
Why are you using VB6? Do you hate yourself? (Christian Graus)

GeneralRe: In _keyDown I don't receive events for the arrows keys Pin
I Believe In GOD6-Jun-09 10:36
I Believe In GOD6-Jun-09 10:36 
GeneralRe: In _keyDown I don't receive events for the arrows keys Pin
Roland Szigeti6-Jun-09 10:45
Roland Szigeti6-Jun-09 10:45 
QuestionSmart Card Reader/Writer Pin
ddravin20005-Jun-09 21:45
ddravin20005-Jun-09 21:45 
AnswerRe: Smart Card Reader/Writer Pin
Garth J Lancaster5-Jun-09 22:09
professionalGarth J Lancaster5-Jun-09 22:09 
QuestionExecute query in server Pin
Abdul Rahman Hamidy5-Jun-09 21:44
Abdul Rahman Hamidy5-Jun-09 21:44 
QuestionSerializing objects in c# Pin
alonchap5-Jun-09 21:44
alonchap5-Jun-09 21:44 
AnswerRe: Serializing objects in c# Pin
Christian Graus5-Jun-09 21:55
protectorChristian Graus5-Jun-09 21:55 
GeneralRe: Serializing objects in c# Pin
alonchap5-Jun-09 22:21
alonchap5-Jun-09 22:21 
GeneralRe: Serializing objects in c# Pin
Christian Graus5-Jun-09 22:52
protectorChristian Graus5-Jun-09 22:52 
GeneralRe: Serializing objects in c# Pin
alonchap5-Jun-09 23:00
alonchap5-Jun-09 23:00 
GeneralRe: Serializing objects in c# Pin
Christian Graus5-Jun-09 23:35
protectorChristian Graus5-Jun-09 23:35 
GeneralRe: Serializing objects in c# [modified] Pin
alonchap6-Jun-09 7:09
alonchap6-Jun-09 7:09 
QuestionC# and C++ Win32 Console app Interop Pin
indikat5-Jun-09 21:18
indikat5-Jun-09 21:18 
AnswerRe: C# and C++ Win32 Console app Interop Pin
Garth J Lancaster5-Jun-09 21:37
professionalGarth J Lancaster5-Jun-09 21:37 
GeneralRe: C# and C++ Win32 Console app Interop Pin
indikat6-Jun-09 1:04
indikat6-Jun-09 1:04 
GeneralRe: C# and C++ Win32 Console app Interop Pin
Garth J Lancaster6-Jun-09 14:59
professionalGarth J Lancaster6-Jun-09 14:59 
GeneralRe: C# and C++ Win32 Console app Interop Pin
indikat6-Jun-09 18:56
indikat6-Jun-09 18:56 

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.