示例#1
0
        private void button7_Click(object sender, EventArgs e)
        {
            int i;

            if (textBox1.Text == "" || !int.TryParse(textBox1.Text, out i))
            {
                MsgShow ms = new MsgShow("Invalid MID");
                ms.ShowDialog();
                return;
            }
            Dt = cobj.Count_Employees_under_Manager(i);
            if (Convert.ToString(Dt.Rows[0]["N_Of_Emp"]) == "")
            {
                MsgShow ms = new MsgShow("Invalid MID");
                ms.ShowDialog();
                return;
            }
            else
            {
                amount = Convert.ToDouble(Dt.Rows[0]["N_Of_Emp"]);
            }
            this.Hide();
            statisticsveiwer f = new statisticsveiwer(null, this, "Emp Count", amount.ToString());

            f.Show();
        }
示例#2
0
        private void button13_Click(object sender, EventArgs e)
        {
            int i;

            if (textBox1.Text == "" || int.TryParse(textBox1.Text, out i))
            {
                MsgShow ms = new MsgShow("Invalid Job");
                ms.ShowDialog();
                return;
            }
            Dt = cobj.AVG_Sal_Under_Job(textBox1.Text);
            if (Convert.ToString(Dt.Rows[0]["AVG_Salaries"]) == "")
            {
                MsgShow ms = new MsgShow("Invalid Job");
                ms.ShowDialog();
                return;
            }
            else
            {
                amount = Convert.ToDouble(Dt.Rows[0]["AVG_Salaries"]);
            }
            this.Hide();
            statisticsveiwer f = new statisticsveiwer(null, this, "AVG Salary", amount.ToString());

            f.Show();
        }
示例#3
0
        private void button2_Click(object sender, EventArgs e)
        {
            Dt     = cobj.Count_Employees_under_Manager(Convert.ToInt32(id));
            amount = Convert.ToDouble(Dt.Rows[0]["N_Of_Emp"]);
            this.Hide();
            statisticsveiwer f = new statisticsveiwer(this, null, "Emp Count", amount.ToString());

            f.Show();
        }
示例#4
0
        private void button3_Click(object sender, EventArgs e)
        {
            Dt = cobj.AVG_Age_Under_Manager(Convert.ToInt32(id));
            if (Convert.ToString(Dt.Rows[0]["AVG_Age"]) == "")
            {
                amount = 0;
            }
            else
            {
                amount = Convert.ToDouble(Dt.Rows[0]["AVG_Age"]);
            } this.Hide();
            statisticsveiwer f = new statisticsveiwer(this, null, "AVG Age", amount.ToString());

            f.Show();
        }
示例#5
0
        private void button1_Click(object sender, EventArgs e)
        {
            Dt = cobj.Total_Sal_Under_Manager(Convert.ToInt32(id));
            if (Convert.ToString(Dt.Rows[0]["Total_salary"]) == "")
            {
                amount = 0;
            }
            else
            {
                amount = Convert.ToDouble(Dt.Rows[0]["Total_salary"]);
            } this.Hide();
            statisticsveiwer f = new statisticsveiwer(this, null, "Total Salaries", amount.ToString());

            f.Show();
        }
示例#6
0
        private void av_Click(object sender, EventArgs e)
        {
            Dt = cobj.Get_AVG_Sal();
            if (Convert.ToString(Dt.Rows[0]["avg_Salary"]) == "")
            {
                amount = 0;
            }
            else
            {
                amount = Convert.ToDouble(Dt.Rows[0]["avg_Salary"]);
            }
            this.Hide();
            statisticsveiwer f = new statisticsveiwer(null, this, "avg_salary", amount.ToString());

            f.Show();
        }
示例#7
0
        private void button2_Click(object sender, EventArgs e)
        {
            Dt = cobj.Count_Employees();
            if (Convert.ToString(Dt.Rows[0]["N_Of_Emp"]) == "")
            {
                amount = 0;
            }
            else
            {
                amount = Convert.ToDouble(Dt.Rows[0]["N_Of_Emp"]);
            }
            this.Hide();
            statisticsveiwer f = new statisticsveiwer(null, this, "Emp Count", amount.ToString());

            f.Show();
        }