Example #1
0
 private void cmbInvestigation_SelectedIndexChanged(object sender, EventArgs e)
 {
     try
     {
         if (txtAppInvId.Text == "") //load fees from investigation table
         {
             if (cmbInvestigation.SelectedIndex != 0)
             {
                 txtInvFee.Text = objCD.getInvestigationFees(Convert.ToInt32(cmbInvestigation.SelectedValue.ToString()));
             }
         }
     }
     catch (Exception ex)
     {
         CommonLogger.Info(ex.ToString());
     }
 }