-->

Thursday, 9 October 2014

Salary Calculate/Pay Slip Generator Windows Application Project in C Sharp

Salary Calculate/Pay Slip Generator Windows Application Project in C Sharp

Project Description: Salary Management System or Pay Slip Generator Application project is a windows application project used for calculates the monthly salary of an employee on the basic of Allowance, Bonuses, Provident Fund Medical Deduction and Other Benefit. This project builds in .net framework 3.5 using c sharp language.

Salary Calculate Windows Application Project in C Sharp

Features of Salary Calculate Application Project:
  • Build in single windows form.
  • Platform independent.
  • Easy customization(add or delete fields).
  • One click edit and reset feature.
download
ProSourceCode:
On Button Click Even:
        private void button1_Click(object sender, EventArgs e)
        {
            int sal = 0;
            sal += int.Parse(comboBox2.Text);
            if (checkBox1.Checked == true)
            {
                sal += 5000;
            }
            if (checkBox2.Checked == true)
            {
                sal += 5000;
            }
            if (checkBox3.Checked == true)
            {
                sal += 5000;
            }
            if(checkBox4.Checked==true){
                sal +=5000;
                sal += (10000 * listBox1.SelectedIndices.Count);
            }

            if (checkBox5.Checked == true)
            {
                sal -= 1500;
            }
            if (checkBox6.Checked == true)
            {
                sal -= 2500;
                
            }
            textBox2.Text = sal.ToString();
        }

       

Read other related articles

Also read other articles

© Copyright 2019 Project Source Code | All Right Reserved