Click here to Skip to main content
15,902,299 members
Home / Discussions / C#
   

C#

 
GeneralRe: DataSet to List Pin
Luc Pattyn6-May-10 18:15
sitebuilderLuc Pattyn6-May-10 18:15 
Questionappend(a,b,&result) Pin
Abdul-Rhman Alsri6-May-10 14:03
Abdul-Rhman Alsri6-May-10 14:03 
AnswerRe: append(a,b,&result) Pin
Dr.Walt Fair, PE6-May-10 14:40
professionalDr.Walt Fair, PE6-May-10 14:40 
AnswerRe: append(a,b,&result) Pin
Luc Pattyn6-May-10 14:47
sitebuilderLuc Pattyn6-May-10 14:47 
AnswerRe: append(a,b,&result) Pin
Anthony Mushrow6-May-10 14:56
professionalAnthony Mushrow6-May-10 14:56 
AnswerRe: append(a,b,&result) Pin
PIEBALDconsult6-May-10 15:02
mvePIEBALDconsult6-May-10 15:02 
GeneralRe: append(a,b,&result) Pin
Luc Pattyn6-May-10 15:24
sitebuilderLuc Pattyn6-May-10 15:24 
Questionkey_down event fired twice Pin
igalep1326-May-10 11:18
igalep1326-May-10 11:18 
hey,
i'm listening to key_down event,
when it's fired, the following code are executed
private void typingTextBox_KeyDown(object sender, KeyEventArgs e)
{
    char key = (char)e.KeyValue;

    //e.KeyValue returns capital letter,
    //therefor check for non shifted letter (non capital) was clicked
    if (!e.Shift)
        key = Char.Parse(key.ToString().ToLower());

    wg.checkClickedKey(key);
}


but the problem is, that code is executed twice...
how it can be fixed ?

thanks
AnswerRe: key_down event fired twice Pin
William Winner6-May-10 11:23
William Winner6-May-10 11:23 
GeneralRe: key_down event fired twice Pin
igalep1326-May-10 11:26
igalep1326-May-10 11:26 
GeneralRe: key_down event fired twice Pin
harold aptroot6-May-10 11:30
harold aptroot6-May-10 11:30 
GeneralRe: key_down event fired twice Pin
igalep1326-May-10 11:36
igalep1326-May-10 11:36 
AnswerRe: key_down event fired twice Pin
Luc Pattyn6-May-10 11:37
sitebuilderLuc Pattyn6-May-10 11:37 
GeneralRe: key_down event fired twice Pin
igalep1326-May-10 11:47
igalep1326-May-10 11:47 
GeneralRe: key_down event fired twice Pin
Luc Pattyn6-May-10 11:55
sitebuilderLuc Pattyn6-May-10 11:55 
GeneralRe: key_down event fired twice Pin
igalep1326-May-10 12:09
igalep1326-May-10 12:09 
QuestionFtpWebRequest - (UploadFile) every other character is NULL Pin
Alaric_6-May-10 10:30
professionalAlaric_6-May-10 10:30 
AnswerRe: FtpWebRequest - (UploadFile) every other character is NULL Pin
Alaric_6-May-10 10:34
professionalAlaric_6-May-10 10:34 
QuestionIssue With Multiple Events Handled By One Delegate ... Pin
Mrestivo6-May-10 6:11
Mrestivo6-May-10 6:11 
AnswerRe: Issue With Multiple Events Handled By One Delegate ... Pin
Not Active6-May-10 7:00
mentorNot Active6-May-10 7:00 
GeneralRe: Issue With Multiple Events Handled By One Delegate ... Pin
Mrestivo6-May-10 7:56
Mrestivo6-May-10 7:56 
GeneralRe: Issue With Multiple Events Handled By One Delegate ... Pin
Not Active6-May-10 8:21
mentorNot Active6-May-10 8:21 
Questionvariable type class Pin
tek 20096-May-10 5:24
tek 20096-May-10 5:24 
AnswerRe: variable type class Pin
Henry Minute6-May-10 5:40
Henry Minute6-May-10 5:40 
AnswerRe: variable type class Pin
harold aptroot6-May-10 5:44
harold aptroot6-May-10 5:44 

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.