private void textBoxHbh_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar >= 'a' && e.KeyChar <= 'z')
{
this.textBoxHbh.Text = this.textBoxHbh.Text + e.KeyChar.ToString().ToUpper();
e.Handled = true;
textBoxHbh.SelectionStart = textBoxHbh.Text.Length;
}
}