Obtener datos de los controles Formulario
Enviado por Lezly Oliván Molina • 11 de Marzo de 2018 • Tutorial • 1.132 Palabras (5 Páginas) • 109 Visitas
Obtener datos de los controles
Formulario
[pic 1]
Ajuste de imagen
[pic 2]
Código:
Botón Capturar
//Fecha actual
DateTime Fecha = DateTime.Today;
string formatoFecha = Fecha.ToString("dd/MM/yyyy");
txtFechaSal.Text = Convert.ToString(formatoFecha);
//Nombre Completo
txtNombreSal.Text = txtNombre.Text + " " + txtApPat.Text + " "+ txtApMat.Text;
//Sexo
if (rbtMasculino.Checked)
{
txtSexoSal.Text = rbtMasculino.Text;
}
else //if (rbtFemenino.Checked)
{
txtSexoSal.Text = rbtFemenino.Text;
}
//Estudios
if (chkPreparatoria.Checked)
{
txtEstudiosSal.Text += chkPreparatoria.Text +", ";
}
if (chkLicenciatura.Checked)
{
txtEstudiosSal.Text += chkLicenciatura.Text + ", ";
}
if (chkMaestria.Checked)
{
txtEstudiosSal.Text += chkMaestria.Text;
}
//No Hijos
txtHijosSal.Text = Convert.ToString(cmbHijos.SelectedItem);
//fecha Nacimiento
DateTime fechaNac = dtpFecha.Value;
string formatoFechaNac = fechaNac.ToString("dd/M/yyyy");
txtFechaNacSal.Text = Convert.ToString(formatoFechaNac);
//dia nacimiento
DateTime DiaNac = dtpFecha.Value;
string formatoDiaNac = DiaNac.Day.ToString();
txtDiaSal.Text = Convert.ToString(formatoDiaNac);
//mes nacimiento
DateTime MesNac = dtpFecha.Value;
string formatoMesNac = MesNac.Month.ToString();
txtMesSal.Text = Convert.ToString(formatoMesNac);
//año nacimiento
DateTime AñoNac = dtpFecha.Value;
string formatoAñoNac = AñoNac.Year.ToString();
txtAñoSal.Text = Convert.ToString(formatoAñoNac);
//calculo edad
int AñoActual = Convert.ToInt16(Fecha.Year.ToString());
int AñoNacimiento = Convert.ToInt16(fechaNac.Year.ToString());
...