private void ucProjectPOSubtypeApproval_Load(object sender, EventArgs e)
 {
     st        = new AlertProperties.CommonComponents.ucStakeholderType(Connection, DevXMgr, AlertPointID);
     st.Dock   = DockStyle.Fill;
     st.Parent = panelControl1;
     st.BringToFront();
 }
Пример #2
0
        private void ucProjectBudActNotifications_Load(object sender, EventArgs e)
        {
            st        = new AlertProperties.CommonComponents.ucStakeholderType(Connection, DevXMgr, AlertPointID);
            st.Dock   = DockStyle.Fill;
            st.Parent = panelControl1;
            st.BringToFront();
            isLoading = true;
            string sSelect = "select isnull(Proj_BudAct_Threshold_Pct,10) from Alert_Properties_Setup";

            teThresholdPct.EditValue = Connection.SQLExecutor.ExecuteScalar(sSelect, Connection.TRConnection);
            isLoading = false;
        }