private void fillComponents()
        {
            Business.Common.CommonBusiness CB = new Business.Common.CommonBusiness();

            string currentTerm = CB.getCurrentTerm();

            txtCurrentTerm.Text = currentTerm;
            txtLastTerm.Text    = CB.getLastTerm(currentTerm);
            txtEntryYear.Text   = "13" + currentTerm.Substring(0, 2);
            txtByEntryYear.Text = (Convert.ToInt32(txtEntryYear.Text) - 1).ToString();
        }