Click here to Skip to main content
15,902,636 members
Home / Discussions / C#
   

C#

 
AnswerRe: Input Box problem in C# Pin
Christian Graus25-Feb-07 20:38
protectorChristian Graus25-Feb-07 20:38 
GeneralRe: Input Box problem in C# Pin
thailehuy25-Feb-07 20:43
thailehuy25-Feb-07 20:43 
GeneralRe: Input Box problem in C# Pin
Christian Graus25-Feb-07 21:20
protectorChristian Graus25-Feb-07 21:20 
GeneralRe: Input Box problem in C# Pin
thailehuy25-Feb-07 21:23
thailehuy25-Feb-07 21:23 
GeneralRe: Input Box problem in C# Pin
Martin#25-Feb-07 22:01
Martin#25-Feb-07 22:01 
GeneralRe: Input Box problem in C# Pin
thailehuy25-Feb-07 22:08
thailehuy25-Feb-07 22:08 
GeneralRe: Input Box problem in C# Pin
Martin#25-Feb-07 22:18
Martin#25-Feb-07 22:18 
GeneralRe: Input Box problem in C# Pin
thailehuy25-Feb-07 22:30
thailehuy25-Feb-07 22:30 
The handler does not do anything in particular, but call this method:


private void textBoxText_Validating(object sender, System.ComponentModel.CancelEventArgs e) {
			if (Validator != null) {
				InputBoxValidatingArgs args = new InputBoxValidatingArgs();
				args.Text = textBoxText.Text;
				Validator(this, args);
				if (args.Cancel) {
					e.Cancel = true;
					errorProviderText.SetError(textBoxText, args.Message);
				}
}

InputBoxValidatingArgs and Validator are some other classes and variables that store values


The Show method is called whenever user click a button or a menu item
GeneralRe: Input Box problem in C# Pin
Christian Graus25-Feb-07 22:07
protectorChristian Graus25-Feb-07 22:07 
QuestionStrange Problem Pin
sam#25-Feb-07 19:45
sam#25-Feb-07 19:45 
AnswerRe: Strange Problem Pin
Christian Graus25-Feb-07 20:40
protectorChristian Graus25-Feb-07 20:40 
GeneralRe: Strange Problem Pin
sam#25-Feb-07 21:55
sam#25-Feb-07 21:55 
AnswerRe: Strange Problem Pin
alex.almeida26-Feb-07 8:55
alex.almeida26-Feb-07 8:55 
QuestionHow to invoke a method of an application in WIndows Service Pin
Mr Perfect25-Feb-07 19:42
Mr Perfect25-Feb-07 19:42 
AnswerRe: How to invoke a method of an application in WIndows Service Pin
Colin Angus Mackay25-Feb-07 23:51
Colin Angus Mackay25-Feb-07 23:51 
Questionplease check if the DB2OLEDB connection string is correct. Pin
icesha25-Feb-07 19:18
icesha25-Feb-07 19:18 
AnswerRe: please check if the DB2OLEDB connection string is correct. Pin
Binod K25-Feb-07 19:35
Binod K25-Feb-07 19:35 
GeneralRe: please check if the DB2OLEDB connection string is correct. Pin
icesha25-Feb-07 20:50
icesha25-Feb-07 20:50 
QuestionApplication error on closing a .Net application. Pin
pranu_1325-Feb-07 19:03
pranu_1325-Feb-07 19:03 
AnswerRe: Application error on closing a .Net application. Pin
Expert Coming25-Feb-07 19:47
Expert Coming25-Feb-07 19:47 
AnswerRe: Application error on closing a .Net application. Pin
pbraun3-Mar-07 14:54
pbraun3-Mar-07 14:54 
QuestionUserControl priority Pin
AesopTurtle25-Feb-07 18:24
AesopTurtle25-Feb-07 18:24 
AnswerRe: UserControl priority Pin
Judah Gabriel Himango26-Feb-07 13:38
sponsorJudah Gabriel Himango26-Feb-07 13:38 
QuestionGDI and User Control related Pin
fjlv200525-Feb-07 18:06
fjlv200525-Feb-07 18:06 
AnswerRe: GDI and User Control related Pin
Snews25-Feb-07 18:43
Snews25-Feb-07 18:43 

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.