Salut a tous
Pourrais Je avoir le meme code ci-dessous , mais fois avec swich case ?
private void button1_Click(object sender, EventArgs e)
{
// pictureBox1.InitialImage = Properties.Resources.Load;
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if(e.KeyChar
(char )Keys.Enter && textBox1.Text"")
{
e.Handled = true;
MessageBox.Show("Enter a value");
textBox1.Focus();
}
else
if (char.IsDigit (e.KeyChar) == true )
{
e.Handled = true;
MessageBox.Show("Enter a correct value");
textBox1.Text = "";
}
else
if(char.IsPunctuation(e.KeyChar )== true )
{
e.Handled = true;
textBox1.Text = "";
MessageBox.Show("Enter a correct value");
}
else
if (char.IsSymbol(e.KeyChar) == true)
{
e.Handled = true;
textBox1.Text = "";
MessageBox.Show("blablablabla");
}
}