private bool Validar() { bool paso = true; if (EstudianteId_Text.Text == String.Empty) { MessageBox.Show("Id Vacio"); EstudianteId_Text.Focus(); paso = false; } if (Nombre_Text.Text == String.Empty) { MessageBox.Show("Nombre Vacio"); Nombre_Text.Focus(); paso = false; } if (Apellido_Text.Text == String.Empty) { MessageBox.Show("Apellido Vacio"); Apellido_Text.Focus(); paso = false; } if (Telefono_Text.Text == String.Empty) { MessageBox.Show("Telefono Vacio"); Telefono_Text.Focus(); paso = false; } if (Cedula_Text.Text == String.Empty) { MessageBox.Show("Cedula Vacio"); Cedula_Text.Focus(); paso = false; } if (Direccion_Text.Text == String.Empty) { MessageBox.Show("Direccion Vacio"); Direccion_Text.Focus(); paso = false; } if (FechaBox.Text == String.Empty) { MessageBox.Show("Fecha Vacio"); FechaBox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (Id_Text.Text == String.Empty) { MessageBox.Show("Id Vacio", "Error"); Id_Text.Focus(); paso = false; } if (Nombre_Text.Text == String.Empty) { MessageBox.Show("Nombre Vacio", "Error"); Nombre_Text.Focus(); paso = false; } if (Cedula_Text.Text == String.Empty) { MessageBox.Show("Cedula Vacia", "Error"); Cedula_Text.Focus(); paso = false; } if (Direccion_Text.Text == String.Empty) { MessageBox.Show("Direccion Vacia", "Error"); Direccion_Text.Focus(); paso = false; } if (Fecha_Text.Text == String.Empty) { MessageBox.Show("Fecha Vacia", "Error"); Fecha_Text.Focus(); paso = false; } if (this.Detalles.Count == 0) { MessageBox.Show("Debe Agregar un Telefono", "Error"); Telefono_Text.Focus(); paso = false; } return(paso); }