private void InfoUsuario_Click(object sender, RoutedEventArgs e) { MessageBox.Show("UID: " + SesionUsuario.getUserID() + ", UN: " + SesionUsuario.getUser() + ", UT: " + SesionUsuario.getUserTipo() + ", EV: " + SesionUsuario.getEvento() + ", EVID: " + SesionUsuario.getIDEvento() ); }
private void AddFunktion_Click(object sender, RoutedEventArgs e) { if (chooseSystem.SelectedValue == null) { MessageBox.Show("Selecciona un sistema para agregar esta función a este."); return; } string nombreFunc = ""; string nar = ""; string rdw = ""; string gesetz = ""; string descripcion = ""; nombreFunc = NombreFuncion.Text; nar = NAR.Text; rdw = RdW.Text; gesetz = Gesetz.Text; descripcion = DescripFuncion.Text; int ID_selectedSystem = Convert.ToInt32(chooseSystem.SelectedValue); db.openConn(); string qry_addFunc = "INSERT INTO funktion (nombre, NAR, RDW, Gesetz, "; qry_addFunc += "descripcion, Einsatz_KWJahr, editado_por, sistema_ID, isActive) VALUES ("; qry_addFunc += "'" + nombreFunc + "', "; qry_addFunc += "'" + nar + "', "; qry_addFunc += "'" + rdw + "', "; qry_addFunc += "'" + gesetz + "', "; qry_addFunc += "'" + descripcion + "', "; qry_addFunc += "'" + Einsatz_KWJahr.Text + "', "; qry_addFunc += "'" + SesionUsuario.getUser() + "', "; qry_addFunc += ID_selectedSystem; qry_addFunc += ", " + "1" + ")"; using (db.setComm(qry_addFunc)) { affectedRows = db.getComm().ExecuteNonQuery(); } if (affectedRows == 0) { db.sendMBandCloseConn("No se pudo crear la función."); return; } db.sendMBandCloseConn("Funcion creada exitosamente dentro del sistema: " + chooseSystem.Text); NombreFuncion.Text = ""; DescripFuncion.Text = ""; NAR.Text = ""; RdW.Text = ""; Gesetz.Text = ""; Einsatz_KWJahr.Text = ""; }
public admin() { InitializeComponent(); UserControl usc = null; GridMain.Children.Clear(); usc = new Instruccions(); GridMain.Children.Add(usc); NavigationCommands.BrowseBack.InputGestures.Clear(); NavigationCommands.BrowseForward.InputGestures.Clear(); db = new DB(); string qry_getEvento = "SELECT COUNT(nombre) AS numEventos FROM evento WHERE is_current = 1"; string qry_getEventoNom = "SELECT nombre, ID FROM evento WHERE is_current = 1"; string nom_evento_actual = ""; int ID_evento_actual = 0; db.openConn(); using (db.setComm(qry_getEvento)) { db.setReader(); while (db.getReader().Read()) { affectedRows = Convert.ToInt32(db.getReader()["numEventos"]); } } if (affectedRows == 0) { nombreEvento.Text = SesionUsuario.getUserTipoString(); } else { using (db.setComm(qry_getEventoNom)) { db.setReader(); while (db.getReader().Read()) { nom_evento_actual = Convert.ToString(db.getReader()["nombre"]); ID_evento_actual = Convert.ToInt32(db.getReader()["ID"]); } SesionUsuario.setEvento(nom_evento_actual); SesionUsuario.setIDEvento(ID_evento_actual); } changeEventTitle(); } db.closeConn(); fillEventos(); // Remove elements if not administrator if (SesionUsuario.getUserTipo() == 2) { // AgregarEvento.Visibility = Visibility.Collapsed; AgregarAuto.Visibility = Visibility.Collapsed; AgregarSistema.Visibility = Visibility.Collapsed; AgregarFuncion.Visibility = Visibility.Collapsed; NuevoUsuario.Visibility = Visibility.Collapsed; EliminarUsuario.Visibility = Visibility.Collapsed; ResetPasswords.Visibility = Visibility.Collapsed; Administracion.Visibility = Visibility.Collapsed; } if (SesionUsuario.getUser() == "cesar") { nombreUsuario.Text = "César"; } else { nombreUsuario.Text = SesionUsuario.getUser(); } }