Skip to content

Commit

Permalink
Issue #17
Browse files Browse the repository at this point in the history
PDA Boton limpiar campos
  • Loading branch information
vicosanz committed Oct 29, 2012
1 parent f3180ba commit 65d05b4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 33 deletions.
20 changes: 8 additions & 12 deletions ActivosFijos.SmartClient/frmTomaActivo.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 14 additions & 21 deletions ActivosFijos.SmartClient/frmTomaActivo.cs
Expand Up @@ -52,6 +52,20 @@ private void btnCancelar_Click(object sender, EventArgs e)
{
txtActivo.Text = "";
txtSerie1.Text = "";

cboGrupo.SelectedIndex = -1;
cboTipo.SelectedIndex = -1;
cboClase.SelectedIndex = -1;
txtDescripcion.Text = "";
cboMarca.SelectedIndex = -1;
txtModelo.Text = "";
txtSerie.Text = "";
cboEstadoActivo.SelectedIndex = -1;
cboDepreciacion.SelectedIndex = -1;
txtObservacion.Text = "";
txtResponsable.Text = "";
pnladic.Controls.Clear();

CargarActivo();
}

Expand Down Expand Up @@ -233,26 +247,5 @@ private void btnatras_Click(object sender, EventArgs e)
{
this.Close();
}

private void lblMarca_ParentChanged(object sender, EventArgs e)
{

}

private void txtModelo_TextChanged(object sender, EventArgs e)
{

}

private void txtActivo_TextChanged(object sender, EventArgs e)
{

}

private void txtSerie1_TextChanged(object sender, EventArgs e)
{

}

}
}

0 comments on commit 65d05b4

Please sign in to comment.