Click here to Skip to main content
15,891,136 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: Compiler Optimization - size, speed, full, or none of the above. Pin
Saurabh.Garg9-Jun-08 1:28
Saurabh.Garg9-Jun-08 1:28 
Question[Message Deleted] Pin
Phil173031-May-08 2:13
Phil173031-May-08 2:13 
AnswerRe: ToDoList 5.5.5. Pin
Christian Graus5-Jun-08 5:46
protectorChristian Graus5-Jun-08 5:46 
QuestionTFTP Sample Code Pin
hitesh sojitra29-May-08 0:44
hitesh sojitra29-May-08 0:44 
AnswerCP IGNORE Pin
leckey31-May-08 16:44
leckey31-May-08 16:44 
GeneralRe: CP IGNORE Pin
Paul Conrad2-Jul-08 18:26
professionalPaul Conrad2-Jul-08 18:26 
Questiontextchange event Pin
rose19628-May-08 20:00
rose19628-May-08 20:00 
AnswerRe: textchange event Pin
teejayem29-May-08 2:42
teejayem29-May-08 2:42 
if you want to get the key that was pressed you should use the KeyPress event. the second parameter (KeyPressEventArgs) you can use to get the keychar that was pressed.

Void richTextBox1_KeyPress(Object^  sender, KeyPressEventArgs^  e) {
         char charPressed = (char)e->KeyChar;
}


Don't be overcome by evil, but overcome evil with good

Questionrichtextbox Pin
rose19627-May-08 20:16
rose19627-May-08 20:16 
AnswerRe: richtextbox Pin
teejayem28-May-08 7:32
teejayem28-May-08 7:32 
QuestionSEHException Pin
Member 261650124-May-08 8:19
Member 261650124-May-08 8:19 
QuestionMenus in child forms Pin
wcurtiss23-May-08 4:46
wcurtiss23-May-08 4:46 
AnswerRe: Menus in child forms Pin
led mike23-May-08 5:22
led mike23-May-08 5:22 
GeneralRe: Menus in child forms Pin
wcurtiss23-May-08 5:45
wcurtiss23-May-08 5:45 
GeneralRe: Menus in child forms Pin
led mike23-May-08 6:29
led mike23-May-08 6:29 
QuestionVery fundamental question on scope in Visual C++ .NET C++/CLI programming [modified] Pin
aa1ww23-May-08 4:24
professionalaa1ww23-May-08 4:24 
AnswerRe: Very fundamental question on scope in Visual C++ .NET C++/CLI programming Pin
led mike23-May-08 4:41
led mike23-May-08 4:41 
GeneralRe: Very fundamental question on scope in Visual C++ .NET C++/CLI programming Pin
aa1ww23-May-08 5:36
professionalaa1ww23-May-08 5:36 
GeneralRe: Very fundamental question on scope in Visual C++ .NET C++/CLI programming Pin
led mike23-May-08 6:01
led mike23-May-08 6:01 
GeneralRe: Very fundamental question on scope in Visual C++ .NET C++/CLI programming Pin
led mike23-May-08 6:33
led mike23-May-08 6:33 
QuestionHow do you change the Build Action property of an icon? Pin
BuckBrown22-May-08 10:42
BuckBrown22-May-08 10:42 
AnswerRe: How do you change the Build Action property of an icon? Pin
led mike23-May-08 5:30
led mike23-May-08 5:30 
GeneralRe: How do you change the Build Action property of an icon? Pin
BuckBrown23-May-08 7:05
BuckBrown23-May-08 7:05 
GeneralRe: How do you change the Build Action property of an icon? Pin
led mike23-May-08 7:39
led mike23-May-08 7:39 
GeneralRe: How do you change the Build Action property of an icon? Pin
BuckBrown23-May-08 8:23
BuckBrown23-May-08 8:23 

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.