Exemple #1
0
        private void Btn_Habitacion2_Click(object sender, EventArgs e)
        {
            ProcesarCheckIn nuevo = new ProcesarCheckIn(2, sIdUsuario);

            this.Close();
            nuevo.Show();
        }
Exemple #2
0
        void MiBoton_Click(object sender1, EventArgs e1, int codHab)
        {
            Button boton = sender1 as Button;
            //MessageBox.Show(boton.Name);
            int             codigo = Convert.ToInt32(boton.Name);
            ProcesarCheckIn nuevo  = new ProcesarCheckIn(codigo, sIdUsuario);

            this.Close();
            nuevo.Show();
        }