D
DaveHenson
Hi,
Everytime I double the textbox in design screen, it will direct me to
the TextChanged method. I need to add the code myself in the .cs file
(like below 1) and .Designer.cs file (like below 2) for other like
Keydown.
1:
private void txtInvoice_KeyDown(object sender, KeyEventArgs e)
{ }
2:
this.txtCartonID.KeyDown += new
System.Windows.Forms.KeyEventHandler(this.txtCartonID_KeyDown);
Is there any other way to add the code?
Everytime I double the textbox in design screen, it will direct me to
the TextChanged method. I need to add the code myself in the .cs file
(like below 1) and .Designer.cs file (like below 2) for other like
Keydown.
1:
private void txtInvoice_KeyDown(object sender, KeyEventArgs e)
{ }
2:
this.txtCartonID.KeyDown += new
System.Windows.Forms.KeyEventHandler(this.txtCartonID_KeyDown);
Is there any other way to add the code?