Si estás creando tu formulario arrastrando los controles de la barra de herramientas:
buscas en el explorador de soluciones el archivo Form1.Designer.cs, abris el mismo y desplegas desde el signo "+" que está a la izquierda el
código generado por el diseñador y donde están las asignaciones de valores de las propiedades del textBox
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(76, 157);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(100, 20);
this.textBox1.TabIndex = 1;
le agregas el evento
textBox1.KeyPress+=new System.Windows.Forms.KeyPressEventHandler(textBox1_KeyPress);
Quedaría algo así:
this.textBox1.Location = new System.Drawing.Point(76, 157);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(100, 20);
this.textBox1.TabIndex = 1;
textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(textBox1_KeyPress);
En el Archivo Form1.cs
Agregas el método:
void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
}
Si estás creando tu aplicación desde código me avisas y te explico