private void MainForm_Load(object sender, EventArgs e) { Cuestionario cue = new Cuestionario(); MinLabel.Text = cue.BuscarId().ToString(); MaxLabel.Text = cue.BuscarIdMayor().ToString(); Refrescar(); Limpiar(); LLenarCombo(); }
private void freshButton_Click(object sender, EventArgs e) { Cuestionario cue = new Cuestionario(); MinLabel.Text = cue.BuscarId().ToString(); MaxLabel.Text = cue.BuscarIdMayor().ToString(); Refrescar(); Limpiar(); Cronotimer.Stop(); min = 1; seg = 30; Cronoslabel.Text = "00:00"; Cronoslabel.Visible = false; LLenarCombo(); }
void Buscar(Cuestionario cue) { MinLabel.Text = cue.BuscarId().ToString(); MaxLabel.Text = cue.BuscarIdMayor().ToString(); if (!string.IsNullOrWhiteSpace(IdTextBox.Text)) { int idD = Utility.ConvierteEntero(IdTextBox.Text); if (cue.BuscarPregunta(idD)) { RepuestaLb.Visible = false; LlenarCampos(cue); } else { Utility.Mensajes(this, 1, "Esta Pregunta ya fue Realizada!"); Limpiar(); } } }