private void Btn_Habitacion2_Click(object sender, EventArgs e) { ProcesarCheckIn nuevo = new ProcesarCheckIn(2, sIdUsuario); this.Close(); nuevo.Show(); }
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(); }