예제 #1
0
 private void clearForm()
 {
     txtCentreId.Text = Centre.nextCentreID().ToString("000");
     txtName.Text     = String.Empty;
     txtAdd1.Text     = String.Empty;
     txtAdd2.Text     = String.Empty;
     txtTelNo.Text    = String.Empty;
     txtEmail.Text    = String.Empty;
     cboCounty.Items.Clear();
     loadCounties();
 }
예제 #2
0
 private void frmNewCentre_Load(object sender, EventArgs e)
 {
     loadCounties();
     cboCounty.DropDownStyle = ComboBoxStyle.DropDownList;
     txtCentreId.Text        = Centre.nextCentreID().ToString("0000");
 }