private void Editar_Marca_Load(object sender, EventArgs e) { try { m = Marca.cargar_registro(codigo); } catch (Exception ex) { MessageBox.Show("ERROR EDITAR_MARCA 1"); Application.Exit(); } if (m.codigoM != "") { textBox1.Text = m.codigoM; textBox2.Text = m.nombreM; textBox3.Text = m.DetalleM; } else { // MessageBox.Show(""); Validacion v = new Validacion("el codigo de barra no existe. Desea crear esta marca?"); if (v.ShowDialog() == DialogResult.OK) { Formularios.AbrirFormularioHijos(new Alta_Materia()); } else { this.Close(); } } }
private void nuevoProductoToolStripMenuItem_Click(object sender, EventArgs e) { Escanear es = new Escanear(); Formularios.AbrirFormularioHijos(es); if (es.DialogResult == DialogResult.OK) { Marca m = new Marca(); Alta_Materia a = new Alta_Materia(es.codigo_MARCA); m.codigoM = es.codigo_MARCA; if (m.registro_Existente() != true) { MessageBox.Show("Codigo de Marca inexistente. Carguela Primero."); Formularios.AbrirFormularioHijos(a); if (a.DialogResult == DialogResult.OK) { Formularios.AbrirFormularioHijos(new Alta_producto(es.codigo, es.codigo_MARCA)); } } else { Formularios.AbrirFormularioHijos(new Alta_producto(es.codigo, es.codigo_MARCA)); } } }
private void btnmas_Click(object sender, EventArgs e) { Alta_Especialidad esp = new Alta_Especialidad(); Formularios.AbrirFormularioHijos(esp); cargarespe(); }
private void btnmas_Click(object sender, EventArgs e) { Alta_Materias al = new Alta_Materias(); Formularios.AbrirFormularioHijos(al); Listar_Materias aw = new Listar_Materias(); cargardata(); }
private void button1_Click(object sender, EventArgs e) { Alumnos.NuevoInteresado at = new Alumnos.NuevoInteresado(); Formularios.AbrirFormularioHijos(at); if (at.DialogResult == DialogResult.OK) { cargagrid(); } }
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { string email = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0].Value.ToString(); string nombre = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[1].Value.ToString(); string apellido = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[2].Value.ToString(); InteresadoEspecifico inte = new InteresadoEspecifico(email, nombre, apellido); Formularios.AbrirFormularioHijos(inte); }
private void button1_Click(object sender, EventArgs e) { CursoT_Filtrar CursoF = new CursoT_Filtrar(); Formularios.AbrirFormularioHijos(CursoF); if (CursoF.DialogResult == DialogResult.OK) { cargargrid(CursoF.consulta); } }
private void dataGridView1_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e) { try { string Dni = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells["DNI"].Value.ToString(); AlumnoSelecionado aqr = new AlumnoSelecionado(Dni, numtabla); Formularios.AbrirFormularioHijos(aqr); cargardata(); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } }
private void btn_Agregar_M_Click(object sender, EventArgs e) { string CantidadFilas = ListadoMaterias.Rows.Count.ToString(); int cant = Convert.ToInt32(CantidadFilas.ToString()); cant = cant - 1; Variable = cant.ToString(); Formularios.AbrirFormularioHijos(new Alta_Materias()); cargarGrid(); }
private void btn_Agregar_E_Click(object sender, EventArgs e) { string CantidadFilas = dataGridView1.Rows.Count.ToString(); int cant = Convert.ToInt32(CantidadFilas.ToString()); cant = cant - 1; Variable = cant.ToString(); Formularios.AbrirFormularioHijos(new Alta_Especialidad()); cargarGrid(); }
private void dataGridView1_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e) { string Dni = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0].Value.ToString(); //MessageBox.Show(Dni); AlumnoSelecionado aqr = new AlumnoSelecionado(Dni, 1); Formularios.AbrirFormularioHijos(aqr); ds = new DataSet(); consulta = "select * from inscriptos"; aq.cargaTabla("tabla", consulta, ref ds); dataGridView1.DataSource = ds.Tables[0]; }
private void Listar_Materias_Load(object sender, EventArgs e) { while (verficar_cantidadMaterias() == "0") { if (verficar_cantidadMaterias() == "0") { MessageBox.Show("No hay materias creadas, porfavor cree una."); Alta_Materias alt = new Alta_Materias(); Formularios.AbrirFormularioHijos(alt); } else { } } cargardata(); }
private void materiasToolStripMenuItem1_Click(object sender, EventArgs e) { string consulta = "select * from materias"; AccesoDatos aq = new AccesoDatos(); DataSet ds = new DataSet(); aq.cargaTabla("Cantidadmaterias", consulta, ref ds); if (ds.Tables["Cantidadmaterias"].Rows.Count != 0) { Formularios.AbrirFormularioHijos(new Materias()); } else { MessageBox.Show("No hay materias creadas."); Formularios.AbrirFormularioHijos(new Alta_Materias()); } }
private void button1_Click(object sender, EventArgs e) { AlumnosF buscar = new AlumnosF(); //buscar.MdiParent = Formularios.DIOS; Formularios.AbrirFormularioHijos(buscar); // consulta = buscar.qseyo; numtabla = buscar.tablita; //MessageBox.Show(buscar.tablita.ToString()); if (numtabla != 0) { aq.cargaTabla("asd", consulta, ref ds); dataGridView1.DataSource = ds.Tables["asd"]; } }
private void button3_Click(object sender, EventArgs e) { Listar_Materias mate = new Listar_Materias(); Formularios.AbrirFormularioHijos(mate); if (mate.DialogResult == DialogResult.OK) { for (int i = 0; i < mate.tam; i++) { //insertar cada codigo en el listBox1 //listBox1.Items.Remove(mate.NombreM[i]); listBox1.Items.Add(mate.NombreM[i]); //MessageBox.Show(mate.codigo[i]); } } }
private void editarProductoToolStripMenuItem_Click(object sender, EventArgs e) { Escanear es = new Escanear(); Formularios.AbrirFormularioHijos(es); if (es.DialogResult == DialogResult.OK) { Producto p = new Producto(es.codigo_MARCA, es.codigo); if (p.get_codigoM() != string.Empty) { Formularios.AbrirFormularioHijos(new Modificar_Producto(es.codigo, es.codigo_MARCA)); } else { MessageBox.Show("Producto inexistente."); } } }
private void listarMarcasToolStripMenuItem_Click(object sender, EventArgs e) { Escanear es = new Escanear(); Formularios.AbrirFormularioHijos(es); if (es.DialogResult == DialogResult.OK) { Marca m = new Marca(); Alta_Materia a = new Alta_Materia(es.codigo_MARCA); m.codigoM = es.codigo_MARCA; if (m.registro_Existente() != true) { MessageBox.Show("Codigo de Marca inexistente."); } else { Formularios.AbrirFormularioHijos(new Editar_Marca(es.codigo_MARCA)); } } }
private void button1_Click(object sender, EventArgs e) { try { DataSet dtt = new DataSet(); AlumnosF F = new AlumnosF(); Formularios.AbrirFormularioHijos(F); string aux = F.consulta; if (F.tablita == 1 || F.tablita == 2) { numtabla = F.tablita; aq.cargaTabla("cargar", aux, ref dtt); dataGridView1.DataSource = dtt.Tables["cargar"]; } else { // AlumnoSelecionado af = new AlumnoSelecionado(F.dni, 2); // af.ShowDialog(); } } catch (Exception) { } }
private void button2_Click(object sender, EventArgs e) { Listar_Materias mate = new Listar_Materias(); Formularios.AbrirFormularioHijos(mate); if (mate.DialogResult == DialogResult.OK) { for (int i = 0; i < mate.tam; i++) { //insertar cada codigo en el listBox1 if (verificarlistbox(listBox1, mate.NombreM[i]) == -1) { listBox1.Items.Add(mate.NombreM[i]); } //MessageBox.Show(mate.codigo[i]); } cod = new string[mate.tam]; cod = mate.codigo; tam = mate.tam; } }
private void venderProductoToolStripMenuItem_Click(object sender, EventArgs e) { Escanear es = new Escanear(); Formularios.AbrirFormularioHijos(es); if (es.DialogResult == DialogResult.OK) { Producto p = new Producto(es.codigo_MARCA, es.codigo); if (p.get_codigoM() != string.Empty) { Ventas_salida ve = new Ventas_salida(es.codigo_MARCA, es.codigo); Formularios.AbrirFormularioHijos(ve); if (ve.DialogResult == DialogResult.OK) { Formularios.AbrirFormularioPadre(new Ventas_Listar()); } } else { MessageBox.Show("Producto inexistente."); } } }
private void auditoriaToolStripMenuItem_Click(object sender, EventArgs e) { Formularios.AbrirFormularioHijos(new Auditoria()); }
private void controlXUsuarioToolStripMenuItem_Click(object sender, EventArgs e) { Formularios.AbrirFormularioHijos(new BajayModificacionAdministrador()); }
private void cargaBajaUsuarioToolStripMenuItem_Click(object sender, EventArgs e) { Formularios.AbrirFormularioHijos(new ABMAdministrador()); }
private void interesadosToolStripMenuItem_Click_1(object sender, EventArgs e) { Formularios.AbrirFormularioHijos(new Interesados()); }
private void btn_enviarEmail_Click(object sender, EventArgs e) { Formularios.AbrirFormularioHijos(new EnviarMailMasivo(dataGridView1, 4)); }
private void especialidadesToolStripMenuItem_Click(object sender, EventArgs e) { Formularios.AbrirFormularioHijos(new Especialidades()); }
private void altaNuevoCursoToolStripMenuItem_Click(object sender, EventArgs e) { Formularios.AbrirFormularioHijos(new Alta_Curso()); }
private void cursadaToolStripMenuItem_Click(object sender, EventArgs e) { Alumnos.CursadaAlumno ac = new Alumnos.CursadaAlumno(textBox2.Text, textBox1.Text, saberlegajo(tb_DNI.Text)); Formularios.AbrirFormularioHijos(ac); }
private void cambioDeContraseñaToolStripMenuItem_Click(object sender, EventArgs e) { UsuariosModificacion ar = new UsuariosModificacion(); Formularios.AbrirFormularioHijos(ar); }
private void button1_Click_1(object sender, EventArgs e) { CursoT_Filtrar CursoF = new CursoT_Filtrar(); Formularios.AbrirFormularioHijos(CursoF); }