Click here to Skip to main content
15,906,628 members
Home / Discussions / C#
   

C#

 
QuestionProblem to convert Text to GUID type. Pin
hdv2125-Jun-09 23:23
hdv2125-Jun-09 23:23 
AnswerRe: Problem to convert Text to GUID type. Pin
Christian Graus5-Jun-09 23:27
protectorChristian Graus5-Jun-09 23:27 
GeneralRe: Problem to convert Text to GUID type. Pin
hdv2125-Jun-09 23:59
hdv2125-Jun-09 23:59 
GeneralRe: Problem to convert Text to GUID type. Pin
I Believe In GOD6-Jun-09 10:32
I Believe In GOD6-Jun-09 10:32 
GeneralRe: Problem to convert Text to GUID type. Pin
hdv2129-Jun-09 10:47
hdv2129-Jun-09 10:47 
QuestionExtremly sorry to interupt here.. Pin
Hema Bairavan5-Jun-09 23:14
Hema Bairavan5-Jun-09 23:14 
AnswerRe: Extremly sorry to interupt here.. Pin
Blue_Boy6-Jun-09 3:26
Blue_Boy6-Jun-09 3:26 
GeneralRe: Extremly sorry to interupt here.. Pin
Troy Russell6-Jun-09 8:59
Troy Russell6-Jun-09 8:59 
AnswerRe: Extremly sorry to interupt here.. Pin
Dave Kreskowiak6-Jun-09 4:51
mveDave Kreskowiak6-Jun-09 4:51 
QuestiontableLayoutPanel Pin
hamidhakimi5-Jun-09 23:03
hamidhakimi5-Jun-09 23:03 
Question[Message Deleted] Pin
hkjghkj15-Jun-09 22:40
hkjghkj15-Jun-09 22:40 
AnswerRe: Looping media Pin
Christian Graus5-Jun-09 22:51
protectorChristian Graus5-Jun-09 22:51 
General[Message Deleted] Pin
hkjghkj15-Jun-09 23:51
hkjghkj15-Jun-09 23:51 
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 

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.