Exemple #1
0
        // this button will show all Active Jobs for the given client on the Active Job form
        private void btnActive_Click(object sender, EventArgs e)
        {
            Jobs form = new Jobs(clientID);

            form.ShowDialog();
        }
        private void btnSelect_Click(object sender, EventArgs e)
        {
            Jobs form = new Jobs();

            form.ShowDialog();
        }