private void SetBudgetMoneyMajor_to()
        {
            cBudget_money oBudget_money = new cBudget_money();
            string        strMessage = string.Empty, strCriteria = string.Empty;

            try
            {
                strCriteria = " and budget_money_year = '" + BudgetYear + "' and budget_type='" + this.BudgetType + "' " +
                              " and degree_code = '" + MyBudgetTransferHead.degree_code_to + "' " +
                              " and major_code = '" + MyBudgetTransferHead.major_code_to + "' " +
                              " and budget_plan_code = '" + MyBudgetTransferHead.budget_plan_code_to + "' " +
                              " and item_detail_id = '" + cboItem_detail_to.SelectedValue + "' ";
                var item = oBudget_money.GETMAJOR(strCriteria);
                hddbudget_money_major_id_to.Value = string.Empty;
                if (item != null)
                {
                    hddbudget_money_major_id_to.Value = item.budget_money_major_id.ToString();
                }
            }
            catch (Exception ex)
            {
                lblError.Text = ex.Message.ToString();
            }
        }