Assignment 4: Display Pay Stub Application for Windows
Assignment 4: Display Pay Stub Application for Windows
Windows Program in C#
Due Date: 5/1/2023 midnight
Use assignment 1 Display Pay Stub to create a user interact Windows program application that can input information from the user and display correct pay stub information in Windows. The program will begin with get information from the user for compute employees pay stub information; then calculate the correct pay stub information; then display employees pay stub information in correct form to display on Window.
Employees pay stub information list:
Employees Name (First and Last Name)
Employees Biweekly Gross Pay and Net Pay
Biweekly Working Hours
Employees Pay Rate (dollar per hour)
Health Insurance Rate 6% (store at global variable)
Tax Withhold Rate 15% (store at global variable)
Retirement Contribution Rate 12% (store at global variable)
Formula for calculate the pay stub information:
Biweekly Gross Pay = Biweekly Working Hours * Pay Rate
Health Insurance Fee = Biweekly Gross Pay * Health Insurance Rate %
Tax Withhold Amount = Biweekly Gross Pay * Tax Withhold Rate %
Retirement Contribution = Biweekly Gross Pay * Retirement Contribution Rate %
Biweekly Net Pay = Biweekly Gross Pay (Health Insurance Fee + Tax Withhold Amount + Retirement Contribution).
Windows Program Example:
When program run:
Clicked Get Information button:
The Use enter information and clicked on Compute Salary button:
Clicked on Display button:
When the user clicked on Reset button, it will run the application back to beginning:
P.S. Coding statements of program should have proper comments on each section as required, which is 20 points.
Note: Zip the whole project folder and add your name to the zip file name as A4-students name; then submit to blackboard before Due Date 05/1/2023 midnight.