//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; }
private void BtnShowClosed_Click(object sender, EventArgs e) { ClosedTasks ct = new ClosedTasks(); ct.ShowDialog(); }