public Candidato(Image Foto, Camara C, String Nombre, String Ap, String Fecha_nac, String Tel, String Dir, String Tipo, String Ced, int CbxIndexReceived, String Exp, String Sexo, String Proced, String Cpe, String Cjs) { InitializeComponent(); this.Foto = Foto; this.C = C; this.Nombre = Nombre; this.Ap = Ap; this.Fecha_nac = Fecha_nac; this.Tel = Tel; this.Dir = Dir; this.Tipo = Tipo; this.Ced = Ced; this.CbxIndexReceived = CbxIndexReceived; this.Exp = Exp; this.Sexo = Sexo; this.Proced = Proced; this.Cpe = Cpe; this.Cjs = Cjs; }
private void button1_Click(object sender, EventArgs e) { Image Foto; if(nombre.Text.Length==0 || apellido.Text.Length==0 || ced.Text.Trim().Length<16 || dir.Text.Length==0){ MessageBox.Show("Complete la información del tutor antes de regitrar","Información"); }else{ string query = "Select *From Candidatos where nombre='" + nombreNin.Text + "' AND apellido= '"+apellidoNin.Text+"' AND dir='"+dirNin.Text +"' AND fecha_nac= '"+fechaNac.Text+"' AND Tipo='Niño'"; mc = new MetodosComunes(); mc.GuardarTutor(nombre.Text, apellido.Text, ced.Text, dir.Text, tel.Text, query); this.Dispose(); Candidato cand = new Candidato(); Camara cam = new Camara("", "", "", "", "", "", "", 0,"", "", "", "", "",cand); Foto = cam.Captura.Image; Candidato c = new Candidato(Foto, cam, "", "", "", "", "", "","", -1, "", "","","", ""); c.MdiParent = this.MdiParent; c.Show(); } }
private void button1_Click(object sender, EventArgs e) { String radio=""; String radio1=""; if (radioButton3.Checked == true && radioButton1.Checked==true) { radio = "radio3"; radio1 = "radio1"; Camara c = new Camara(nombre.Text, apellido.Text, fechaNac.Text, tel.Text, dir.Text, tipo.Text, ced.Text, cbxEspc.SelectedIndex, radio, radio1, procedencia.Text, colorpelo.Text, colorojos.Text, this); c.MdiParent = this.MdiParent; c.Show(); this.Dispose(); } else if (radioButton3.Checked == true && radioButton2.Checked == true) { radio = "radio3"; radio1 = "radio2"; Camara c = new Camara(nombre.Text, apellido.Text, fechaNac.Text, tel.Text, dir.Text, tipo.Text, ced.Text, cbxEspc.SelectedIndex, radio, radio1, procedencia.Text, colorpelo.Text, colorojos.Text, this); c.MdiParent = this.MdiParent; c.Show(); this.Dispose(); } else if (radioButton4.Checked == true && radioButton1.Checked==true) { radio = "radio4"; radio1 = "radio1"; Camara c = new Camara(nombre.Text, apellido.Text, fechaNac.Text, tel.Text, dir.Text, tipo.Text, ced.Text, cbxEspc.SelectedIndex, radio, radio1, procedencia.Text, colorpelo.Text, colorojos.Text, this); c.MdiParent = this.MdiParent; c.Show(); this.Dispose(); } else if (radioButton4.Checked == true && radioButton2.Checked == true) { radio = "radio4"; radio1 = "radio2"; Camara c = new Camara(nombre.Text, apellido.Text, fechaNac.Text, tel.Text, dir.Text, tipo.Text, ced.Text, cbxEspc.SelectedIndex, radio, radio1, procedencia.Text, colorpelo.Text, colorojos.Text, this); c.MdiParent = this.MdiParent; c.Show(); this.Dispose(); } else if (radioButton4.Checked == false && radioButton2.Checked ==false) { Camara c = new Camara(nombre.Text, apellido.Text, fechaNac.Text, tel.Text, dir.Text, tipo.Text, ced.Text, cbxEspc.SelectedIndex, radio, radio1, procedencia.Text, colorpelo.Text, colorojos.Text, this); c.MdiParent = this.MdiParent; c.Show(); this.Dispose(); } else if (radioButton4.Checked == true && radioButton2.Checked==false ) { radio = "radio4"; radio1 = ""; Camara c = new Camara(nombre.Text, apellido.Text, fechaNac.Text, tel.Text, dir.Text, tipo.Text, ced.Text, cbxEspc.SelectedIndex, radio, radio1, procedencia.Text, colorpelo.Text, colorojos.Text, this); c.MdiParent = this.MdiParent; c.Show(); this.Dispose(); } else if (radioButton3.Checked == true && radioButton2.Checked == false) { radio = "radio3"; radio1 = ""; Camara c = new Camara(nombre.Text, apellido.Text, fechaNac.Text, tel.Text, dir.Text, tipo.Text, ced.Text, cbxEspc.SelectedIndex, radio, radio1, procedencia.Text, colorpelo.Text, colorojos.Text, this); c.MdiParent = this.MdiParent; c.Show(); this.Dispose(); } else if (radioButton2.Checked == true && radioButton3.Checked == false) { radio = ""; radio1 = "radio2"; Camara c = new Camara(nombre.Text, apellido.Text, fechaNac.Text, tel.Text, dir.Text, tipo.Text, ced.Text, cbxEspc.SelectedIndex, radio, radio1, procedencia.Text, colorpelo.Text, colorojos.Text, this); c.MdiParent = this.MdiParent; c.Show(); this.Dispose(); } else if (radioButton1.Checked == true && radioButton3.Checked == false) { radio = ""; radio1 = "radio1"; Camara c = new Camara(nombre.Text, apellido.Text, fechaNac.Text, tel.Text, dir.Text, tipo.Text, ced.Text, cbxEspc.SelectedIndex, radio, radio1, procedencia.Text, colorpelo.Text, colorojos.Text, this); c.MdiParent = this.MdiParent; c.Show(); this.Dispose(); } }
private void registrarNuevoToolStripMenuItem_Click(object sender, EventArgs e) { Image Foto; Candidato cand = new Candidato(); Camara cam = new Camara("", "" , "", "", "", "", "", 0, "", "", "", "", "", cand); Foto = cam.Captura.Image; Candidato c = new Candidato(Foto, cam, "", "", "", "", "", "", "", -1, "radio4", "", "", "", ""); c.MdiParent = this; c.Show(); }