private void textBox4_KeyPress(object sender, KeyPressEventArgs e)
        {
            ClaseDeValidaciones cv = new ClaseDeValidaciones();

            cv.Decimales(txt_Importe, sender, e);
        }
        private void txt_codigo_KeyPress(object sender, KeyPressEventArgs e)
        {
            ClaseDeValidaciones cv = new ClaseDeValidaciones();

            cv.SoloNumeros(sender, e);
        }