Click here to Skip to main content
15,904,339 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to get browser bookmark or my favorite ? Pin
Yeast2719-Jan-06 5:16
Yeast2719-Jan-06 5:16 
QuestionChanging the font color of a TextDocument of a VS add-in Pin
the_traveller18-Jan-06 9:11
the_traveller18-Jan-06 9:11 
QuestionValidate when erasing a contact in office outlook programming with VS 2005 Pin
lildan18-Jan-06 8:30
lildan18-Jan-06 8:30 
AnswerRe: Validate when erasing a contact in office outlook programming with VS 2005 Pin
Christian Graus18-Jan-06 9:10
protectorChristian Graus18-Jan-06 9:10 
QuestionSo you can't press a specific key. Pin
Rofus8918-Jan-06 8:19
Rofus8918-Jan-06 8:19 
AnswerRe: So you can't press a specific key. Pin
Christian Graus18-Jan-06 9:12
protectorChristian Graus18-Jan-06 9:12 
GeneralRe: So you can't press a specific key. Pin
Rofus8918-Jan-06 11:30
Rofus8918-Jan-06 11:30 
GeneralRe: So you can't press a specific key. Pin
Christian Graus18-Jan-06 11:36
protectorChristian Graus18-Jan-06 11:36 
You may need to handle the KeyDown event. Then you can do this:

if (e.KeyData == Keys.Return || e.KeyData == Keys.Enter)
e.Handled = true;


But from memory, KeyPress is the one that works, but it doesn't get passed the Keys enum. Return has an ASCII value of 13, you could check if it's 13, but I'm not sure how safe that is.


Christian Graus - Microsoft MVP - C++
QuestionB+Tree in Native C# Pin
Joe Woodbury18-Jan-06 8:06
professionalJoe Woodbury18-Jan-06 8:06 
QuestionTurning off Beep with message box Pin
Joe Woodbury18-Jan-06 8:04
professionalJoe Woodbury18-Jan-06 8:04 
AnswerRe: Turning off Beep with message box Pin
CWIZO18-Jan-06 9:46
CWIZO18-Jan-06 9:46 
Questionrichtextbox Pin
Agyeman18-Jan-06 7:43
Agyeman18-Jan-06 7:43 
AnswerRe: remove spave in a richtext box Pin
Christian Graus18-Jan-06 9:12
protectorChristian Graus18-Jan-06 9:12 
AnswerRe: richtextbox Pin
LongRange.Shooter18-Jan-06 18:06
LongRange.Shooter18-Jan-06 18:06 
QuestionDatabase Recommendation? Pin
Office Lineman18-Jan-06 7:16
Office Lineman18-Jan-06 7:16 
AnswerRe: Database Recommendation? Pin
Judah Gabriel Himango18-Jan-06 7:44
sponsorJudah Gabriel Himango18-Jan-06 7:44 
AnswerRe: Database Recommendation? Pin
Michael P Butler18-Jan-06 10:08
Michael P Butler18-Jan-06 10:08 
GeneralRe: Database Recommendation? Pin
Office Lineman18-Jan-06 11:28
Office Lineman18-Jan-06 11:28 
AnswerRe: Database Recommendation? Pin
zopiro18-Jan-06 11:47
zopiro18-Jan-06 11:47 
AnswerRe: Database Recommendation? Pin
OldDog.Net18-Jan-06 14:59
OldDog.Net18-Jan-06 14:59 
NewsRe: Database Recommendation? Pin
Office Lineman18-Jan-06 16:53
Office Lineman18-Jan-06 16:53 
QuestionHow to redirect user after the form data is submitted? Pin
Sue_NC18-Jan-06 6:58
Sue_NC18-Jan-06 6:58 
GeneralRe: How to redirect user after the form data is submitted? Pin
CWIZO18-Jan-06 7:01
CWIZO18-Jan-06 7:01 
GeneralRe: How to redirect user after the form data is submitted? Pin
Sue_NC18-Jan-06 7:15
Sue_NC18-Jan-06 7:15 
QuestionRe: How to redirect user after the form data is submitted? Pin
CWIZO18-Jan-06 7:17
CWIZO18-Jan-06 7:17 

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.