Click here to Skip to main content
16,007,885 members
Home / Discussions / C#
   

C#

 
GeneralRe: Question about assigning value to multiple variables Pin
Green Fuze28-Oct-05 4:40
Green Fuze28-Oct-05 4:40 
GeneralRe: Question about assigning value to multiple variables Pin
Dave Kreskowiak28-Oct-05 5:09
mveDave Kreskowiak28-Oct-05 5:09 
GeneralRe: Question about assigning value to multiple variables Pin
Green Fuze28-Oct-05 6:07
Green Fuze28-Oct-05 6:07 
AnswerRe: Question about assigning value to multiple variables Pin
[Marc]28-Oct-05 6:39
[Marc]28-Oct-05 6:39 
AnswerRe: Question about assigning value to multiple variables Pin
Daniel Turini28-Oct-05 6:54
Daniel Turini28-Oct-05 6:54 
AnswerRe: Question about assigning value to multiple variables Pin
leppie28-Oct-05 9:36
leppie28-Oct-05 9:36 
QuestionShort C ut Keys Pin
Agyeman28-Oct-05 3:28
Agyeman28-Oct-05 3:28 
AnswerRe: Short C ut Keys Pin
leppie28-Oct-05 9:41
leppie28-Oct-05 9:41 
I believe the following should work, derive from RichTextBox.
protected override bool IsInputChar(char charCode)
{
 switch ((int) charCode)
 {
   //these are CTRL + char = (int) char
   case 1:  //CTRL + A
   case 3:  //CTRL + C
   case 6:  //CTRL + F
   case 22: //CTRL + V
   case 24: //CTRL + X
   case 26: //CTRL + Z
   case 27: //ALT + right, i think
   case '\t': 
   case 8:  
   case 10: //CTRL + D == Enter
   case 13: 
     return false;
 }
}


xacc-ide 0.0.99-preview7 now with C#, C, C++, IL, XML, Nemerle, IronPython, Perl, Caml, SML, Ruby, Flex, Yacc, Java, Javascript, Lua, Prolog and Boo highlighting support!
GeneralRe: Short C ut Keys Pin
Agyeman28-Oct-05 11:00
Agyeman28-Oct-05 11:00 
QuestionControlDesigner problem Pin
monteiz28-Oct-05 3:12
monteiz28-Oct-05 3:12 
QuestionSpeed differences using all custom controls to build a form? Pin
methodincharge28-Oct-05 3:07
methodincharge28-Oct-05 3:07 
AnswerRe: Speed differences using all custom controls to build a form? Pin
Dave Kreskowiak28-Oct-05 5:06
mveDave Kreskowiak28-Oct-05 5:06 
QuestionHow to filter/sort records in a datagrid according to the values which are typed in a text box, Pin
vhkg28-Oct-05 2:27
vhkg28-Oct-05 2:27 
AnswerRe: How to filter/sort records in a datagrid according to the values which are typed in a text box, Pin
Wjousts28-Oct-05 5:27
Wjousts28-Oct-05 5:27 
AnswerRe: How to filter/sort records in a datagrid according to the values which are typed in a text box, Pin
| Muhammad Waqas Butt |28-Oct-05 22:53
professional| Muhammad Waqas Butt |28-Oct-05 22:53 
QuestionOutlook Add-In causes strange behaviour Pin
_Goose28-Oct-05 1:52
_Goose28-Oct-05 1:52 
QuestionMenu for a popup form Pin
naglbitur28-Oct-05 0:54
naglbitur28-Oct-05 0:54 
AnswerRe: Menu for a popup form Pin
Wjousts28-Oct-05 2:39
Wjousts28-Oct-05 2:39 
GeneralRe: Menu for a popup form Pin
naglbitur28-Oct-05 3:56
naglbitur28-Oct-05 3:56 
QuestionDatabase in setup project Pin
x-trate28-Oct-05 0:40
x-trate28-Oct-05 0:40 
AnswerRe: Database in setup project Pin
WillemM28-Oct-05 1:37
WillemM28-Oct-05 1:37 
QuestionDynamically updating the CultureInfo Pin
roel_27-Oct-05 23:46
roel_27-Oct-05 23:46 
AnswerRe: Dynamically updating the CultureInfo Pin
WillemM28-Oct-05 1:21
WillemM28-Oct-05 1:21 
GeneralRe: Dynamically updating the CultureInfo Pin
roel_28-Oct-05 1:45
roel_28-Oct-05 1:45 
GeneralRe: Dynamically updating the CultureInfo Pin
Rob Graham28-Oct-05 11:21
Rob Graham28-Oct-05 11:21 

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.