Click here to Skip to main content
15,881,424 members
Home / Discussions / C#
   

C#

 
AnswerRe: is it bug of the microsoft?(about multilanguage) Pin
Eddy Vluggen1-Jun-09 1:59
professionalEddy Vluggen1-Jun-09 1:59 
RantRe: is it bug of the microsoft?(about multilanguage) Pin
yuwenxiang1-Jun-09 14:36
yuwenxiang1-Jun-09 14:36 
QuestionHow to receiving an incoming SMS message? in C# Pin
Md. Ali Naser Khan31-May-09 23:39
Md. Ali Naser Khan31-May-09 23:39 
AnswerRe: How to receiving an incoming SMS message? in C# Pin
Rajesh Anuhya31-May-09 23:50
professionalRajesh Anuhya31-May-09 23:50 
GeneralRe: How to receiving an incoming SMS message? in C# Pin
Md. Ali Naser Khan1-Jun-09 17:17
Md. Ali Naser Khan1-Jun-09 17:17 
AnswerRe: How to receiving an incoming SMS message? in C# Pin
Giorgi Dalakishvili1-Jun-09 1:24
mentorGiorgi Dalakishvili1-Jun-09 1:24 
QuestionArrow keys and textBox cursor Pin
Richard W Allen31-May-09 23:34
Richard W Allen31-May-09 23:34 
AnswerRe: Arrow keys and textBox cursor Pin
dan!sh 1-Jun-09 0:27
professional dan!sh 1-Jun-09 0:27 
You will need to override the ProcessCMDKey method. This way:

protected override bool ProcessCmdKey(ref Message msg, Keys keyData) {
if (this.ActiveControl.Name == "textBox2" && 
(keyData == Keys.Up || keyData == Keys.Left || 
keyData == Keys.Right || keyData == Keys.Down)) {
        return true;
      }
      else {
        return base.ProcessCmdKey(ref msg, keyData);
      }
    }


जय हिंद

Rajdeep.Net[^] is NOT from India. Proof.[^]

GeneralRe: Arrow keys and textBox cursor Pin
Richard W Allen1-Jun-09 1:27
Richard W Allen1-Jun-09 1:27 
GeneralRe: Arrow keys and textBox cursor Pin
dan!sh 1-Jun-09 1:35
professional dan!sh 1-Jun-09 1:35 
GeneralRe: Arrow keys and textBox cursor Pin
Richard W Allen1-Jun-09 1:49
Richard W Allen1-Jun-09 1:49 
Question[Deployment] How to customize Radio button in deployment process. Pin
rockxuyenmandem31-May-09 23:16
rockxuyenmandem31-May-09 23:16 
QuestionHow to get a Unique ID ( or Network Card Mac Address) in Mobile Devices ? Pin
MehmetFurkan31-May-09 23:04
MehmetFurkan31-May-09 23:04 
AnswerRe: How to get a Unique ID ( or Network Card Mac Address) in Mobile Devices ? Pin
Rajesh Anuhya1-Jun-09 0:07
professionalRajesh Anuhya1-Jun-09 0:07 
GeneralRe: How to get a Unique ID ( or Network Card Mac Address) in Mobile Devices ? Pin
MehmetFurkan1-Jun-09 1:29
MehmetFurkan1-Jun-09 1:29 
GeneralRe: How to get a Unique ID ( or Network Card Mac Address) in Mobile Devices ? Pin
Rajesh Anuhya1-Jun-09 2:43
professionalRajesh Anuhya1-Jun-09 2:43 
Questionhi peoples... Pin
Hema Bairavan31-May-09 22:31
Hema Bairavan31-May-09 22:31 
AnswerRe: hi peoples... Pin
Simon P Stevens31-May-09 22:48
Simon P Stevens31-May-09 22:48 
GeneralRe: hi peoples... Pin
Hema Bairavan31-May-09 22:53
Hema Bairavan31-May-09 22:53 
GeneralRe: hi peoples... Pin
Simon P Stevens31-May-09 23:14
Simon P Stevens31-May-09 23:14 
GeneralRe: hi peoples... Pin
Vasudevan Deepak Kumar1-Jun-09 0:27
Vasudevan Deepak Kumar1-Jun-09 0:27 
GeneralRe: hi peoples... Pin
Pete O'Hanlon1-Jun-09 2:57
mvePete O'Hanlon1-Jun-09 2:57 
AnswerRe: hi peoples... Pin
Pete O'Hanlon1-Jun-09 4:23
mvePete O'Hanlon1-Jun-09 4:23 
Questionabout PowerCollections and C5 library Pin
Seraph_summer31-May-09 22:27
Seraph_summer31-May-09 22:27 
AnswerRe: about PowerCollections and C5 library Pin
Simon P Stevens31-May-09 22:45
Simon P Stevens31-May-09 22:45 

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.