Click here to Skip to main content
15,899,634 members
Home / Discussions / C#
   

C#

 
GeneralRe: COM Interface Usage From C# Pin
James R. Twine14-Feb-07 7:31
James R. Twine14-Feb-07 7:31 
QuestionDeQueuing Thread from ThreadPool. Pin
nasambur14-Feb-07 0:28
nasambur14-Feb-07 0:28 
QuestionC# class help? [modified] Pin
Wolf9214-Feb-07 0:23
Wolf9214-Feb-07 0:23 
AnswerRe: C# class help? Pin
dipswitch@ownage4u.nl14-Feb-07 0:30
professionaldipswitch@ownage4u.nl14-Feb-07 0:30 
AnswerRe: C# class help? Pin
ShermansLagoon14-Feb-07 0:41
ShermansLagoon14-Feb-07 0:41 
AnswerRe: C# class help? Pin
Pete O'Hanlon14-Feb-07 1:21
mvePete O'Hanlon14-Feb-07 1:21 
Questionhow to validate a textbox field for no special characters Pin
Rocky#13-Feb-07 23:54
Rocky#13-Feb-07 23:54 
AnswerRe: how to validate a textbox field for no special characters Pin
stancrm14-Feb-07 0:20
stancrm14-Feb-07 0:20 
Use event KeyPress from the textBox and use this code:
This code means "t" is not allowed.

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
  if (e.KeyChar == 't')
  {
    e.Handled = true;
  }
}

AnswerRe: how to validate a textbox field for no special characters Pin
Martin#14-Feb-07 0:24
Martin#14-Feb-07 0:24 
GeneralRe: how to validate a textbox field for no special characters Pin
Rocky#14-Feb-07 17:33
Rocky#14-Feb-07 17:33 
QuestionBegin and End Drawing function in C# Pin
free_soul42413-Feb-07 23:47
free_soul42413-Feb-07 23:47 
AnswerRe: Begin and End Drawing function in C# Pin
Ed.Poore14-Feb-07 0:30
Ed.Poore14-Feb-07 0:30 
GeneralRe: Begin and End Drawing function in C# Pin
free_soul42414-Feb-07 18:49
free_soul42414-Feb-07 18:49 
GeneralRe: Begin and End Drawing function in C# Pin
Ed.Poore14-Feb-07 23:50
Ed.Poore14-Feb-07 23:50 
QuestionHow to fill Combobox & ListBox in PopUp Windows Forms Pin
rzthebeginner13-Feb-07 23:44
rzthebeginner13-Feb-07 23:44 
AnswerRe: How to fill Combobox & ListBox in PopUp Windows Forms Pin
Ed.Poore14-Feb-07 0:31
Ed.Poore14-Feb-07 0:31 
GeneralRe: How to fill Combobox & ListBox in PopUp Windows Forms Pin
rzthebeginner14-Feb-07 0:41
rzthebeginner14-Feb-07 0:41 
GeneralRe: How to fill Combobox & ListBox in PopUp Windows Forms Pin
Ed.Poore14-Feb-07 0:47
Ed.Poore14-Feb-07 0:47 
GeneralRe: How to fill Combobox & ListBox in PopUp Windows Forms [modified] Pin
rzthebeginner14-Feb-07 0:53
rzthebeginner14-Feb-07 0:53 
GeneralRe: How to fill Combobox & ListBox in PopUp Windows Forms Pin
Ed.Poore14-Feb-07 1:14
Ed.Poore14-Feb-07 1:14 
GeneralRe: How to fill Combobox & ListBox in PopUp Windows Forms Pin
rzthebeginner14-Feb-07 1:20
rzthebeginner14-Feb-07 1:20 
GeneralRe: How to fill Combobox & ListBox in PopUp Windows Forms Pin
Ed.Poore14-Feb-07 2:55
Ed.Poore14-Feb-07 2:55 
GeneralRe: How to fill Combobox & ListBox in PopUp Windows Forms Pin
rzthebeginner14-Feb-07 21:04
rzthebeginner14-Feb-07 21:04 
GeneralRe: How to fill Combobox & ListBox in PopUp Windows Forms Pin
Ed.Poore15-Feb-07 0:20
Ed.Poore15-Feb-07 0:20 
GeneralRe: How to fill Combobox & ListBox in PopUp Windows Forms Pin
rzthebeginner15-Feb-07 1:10
rzthebeginner15-Feb-07 1:10 

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.