Example #1
0
        private void Start_ProjectCostingEmployeeScheduling()
        {
            //AlertProperties.fLauncher launcher = new AlertProperties.fLauncher(_HMCon, _TUC, 38);
            AlertProperties.fLauncher launcher = new AlertProperties.fLauncher(_HMCon, _TUC, 66);

            launcher.Show();
        }
Example #2
0
        private void riProperties_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e)
        {
            DataRow dr = gvAlert.GetDataRow(gvAlert.FocusedRowHandle);

            if (dr != null)
            {
                object oAlert_ID = dr["ID"];
                if (oAlert_ID != null && oAlert_ID != DBNull.Value)
                {
                    AlertProperties.fLauncher PL = new AlertProperties.fLauncher(Connection, DevXMgr, Convert.ToInt32(oAlert_ID));
                    PL.ShowDialog();
                }
            }
        }