예제 #1
0
        //private bool _isAdd = true;

        public MasterClosedTasks(ClosedTasks parent, int taskId)
        {
            InitializeComponent();
            LoadTask(taskId);
            _taskId   = taskId;
            this.Text = "Update Master Task";

            //txtHoursBudgeted.KeyPress += new KeyPressEventHandler(Common.OnlyNumbers);
            _parent = parent;
        }
예제 #2
0
파일: Master.cs 프로젝트: dimrud/inNumbers
        private void BtnShowClosed_Click(object sender, EventArgs e)
        {
            ClosedTasks ct = new ClosedTasks();

            ct.ShowDialog();
        }