private void textBox2_KeyPress(object sender, KeyPressEventArgs e)
{
validaNumeroPunto(e);
}
public void validaNumeroPunto(KeyPressEventArgs en)
{
if (!char.IsDigit(en.KeyChar) && en.KeyChar != (char)Keys.Back && en.KeyChar != 46)
en.Handled = true;
}