private void txtS4_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar <= 57 && e.KeyChar >= 48 || e.KeyChar == 46)
{
e.Handled = false;
}
else
{
e.Handled = true;
}
}