Click here to Skip to main content
15,897,371 members
Home / Discussions / C#
   

C#

 
AnswerRe: Switching between two threads Pin
Leslie Sanford8-Aug-07 19:41
Leslie Sanford8-Aug-07 19:41 
GeneralRe: Switching between two threads Pin
praveen pandey8-Aug-07 19:55
praveen pandey8-Aug-07 19:55 
GeneralRe: Switching between two threads Pin
Leslie Sanford8-Aug-07 21:41
Leslie Sanford8-Aug-07 21:41 
GeneralRe: Switching between two threads Pin
praveen pandey8-Aug-07 23:51
praveen pandey8-Aug-07 23:51 
QuestionBypass character in textbox Pin
Edwin Syarief8-Aug-07 17:46
Edwin Syarief8-Aug-07 17:46 
AnswerRe: Bypass character in textbox Pin
-BoBo8-Aug-07 17:52
-BoBo8-Aug-07 17:52 
GeneralRe: Bypass character in textbox [modified] Pin
Edwin Syarief8-Aug-07 17:54
Edwin Syarief8-Aug-07 17:54 
GeneralRe: Bypass character in textbox Pin
Christian Graus8-Aug-07 18:35
protectorChristian Graus8-Aug-07 18:35 
You need to do this:

if (!Char.IsDigit(e.KeyChar) && !Char.IsControl(e.KeyChar)

or otherwise your arrow/delete/etc keys will not work.

edwin46 wrote:
There is no KeyChar properties in e


It is constantly depressing to me, the inability of so many people to use intellisense, or google. Goodness knows what you're doing, but the KeyChar property is most certainly present.

http://msdn2.microsoft.com/en-us/library/system.windows.forms.keypresseventargs.handled.aspx[^]

Christian Graus - Microsoft MVP - C++

"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

AnswerRe: Bypass character in textbox Pin
Nouman Bhatti8-Aug-07 19:43
Nouman Bhatti8-Aug-07 19:43 
AnswerRe: Bypass character in textbox Pin
Edwin Syarief8-Aug-07 21:27
Edwin Syarief8-Aug-07 21:27 
QuestionUpdating DataSet Pin
-BoBo8-Aug-07 17:29
-BoBo8-Aug-07 17:29 
AnswerRe: Updating DataSet Pin
hamid_m8-Aug-07 19:23
hamid_m8-Aug-07 19:23 
Questiondouble buffering for flickering problem Pin
cyn88-Aug-07 17:10
cyn88-Aug-07 17:10 
AnswerRe: double buffering for flickering problem Pin
Martin#8-Aug-07 20:26
Martin#8-Aug-07 20:26 
AnswerRe: double buffering for flickering problem Pin
Luc Pattyn9-Aug-07 1:04
sitebuilderLuc Pattyn9-Aug-07 1:04 
QuestionFormula - How many address in a range Pin
StevenWalsh8-Aug-07 17:01
StevenWalsh8-Aug-07 17:01 
AnswerRe: Formula - How many address in a range Pin
Christian Graus8-Aug-07 17:29
protectorChristian Graus8-Aug-07 17:29 
GeneralRe: Formula - How many address in a range Pin
StevenWalsh8-Aug-07 18:05
StevenWalsh8-Aug-07 18:05 
GeneralRe: Formula - How many address in a range Pin
Christian Graus8-Aug-07 18:54
protectorChristian Graus8-Aug-07 18:54 
AnswerRe: Formula - How many address in a range Pin
Luc Pattyn9-Aug-07 1:35
sitebuilderLuc Pattyn9-Aug-07 1:35 
GeneralRe: Formula - How many address in a range Pin
StevenWalsh9-Aug-07 1:45
StevenWalsh9-Aug-07 1:45 
QuestionXML in a rich text box Pin
RussBus8-Aug-07 10:08
RussBus8-Aug-07 10:08 
AnswerRe: XML in a rich text box Pin
Big Daddy Farang8-Aug-07 11:51
Big Daddy Farang8-Aug-07 11:51 
AnswerRe: XML in a rich text box Pin
Hessam Jalali8-Aug-07 17:10
Hessam Jalali8-Aug-07 17:10 
Questionbest way to program a huge xml file Pin
brsecu8-Aug-07 9:52
brsecu8-Aug-07 9:52 

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.