General Instructions: Develop a program according to the specifications presented below. Include a flow chart or pseudocode, coding, data dictionary, and program execution.

Specific Instructions: Develop an application to determine employee payroll using a Windows Form application.

Problem: The TK-Tec company requires a mechanized system to calculate personnel payroll. This system must include a mechanism to add employees to a text file and a button to calculate payroll with said file.

Requirements:

- The data is obtained from the following text file: `employees.txt`
```
RIVERA, A.
ROSA, M.
SIERRA, J.
3255
3256
3257
40
40
40
9.25
8.95
8.75
E
N
N
```

- Button to calculate payroll:
- Determine the "gross" pay (Hours Worked * Pay Per Hour).
- Calculate payroll deductions:
- Tax = 10% of gross.
- FICA = gross * 7.65%.
- Medical insurance:
- If Category = E, medical insurance = $35.00; otherwise, pay $10.00.
- Calculate the net pay = gross - (tax + FICA + insurance).

- Include a button to close the screen and a screen clear button.

- Display the result in a Label or TextBox:
- Name:
- Category:
- Gross pay: (dollar format)
- Total deductions: (dollar format)
- Net pay: (dollar format)

Make a GUI or execution screen in Visual Basic.

Answer :

The program is a Windows Form Application that calculates employee payroll based on data stored in a text file. It allows adding employee information to the file, calculates the gross pay, payroll deductions, medical insurance, and net pay for each employee. The application displays the results in a user-friendly GUI with labels and text boxes.

The Windows Form Application is developed using Visual Basic (VB) to create a user interface. The application reads employee data from the "employees.txt" file, which contains employee names, categories (E or N), hours worked, pay per hour, and other relevant information.

The GUI consists of text boxes and labels for input and output data. Users can add new employees to the file using text boxes for entering their details. After adding the employees, the user can click the "Calculate Payroll" button, which triggers the calculation process.

For each employee, the program calculates the gross pay by multiplying the hours worked with the pay per hour. It then calculates payroll deductions, including tax (10% of the gross pay) and FICA (7.65% of the gross pay). Medical insurance is also deducted, with $35.00 for Category=E and $10.00 for other categories.

Finally, the net pay is computed by subtracting the total deductions from the gross pay. The program displays the results in the labels or text boxes on the GUI, showing the employee's name, category, gross pay, total deductions, and net pay in dollar format.

The application also includes a "Screen Clear" button to reset the input fields and labels for the next payroll calculation. The user can close the screen using the "Close" button.

In summary, the Windows Form Application provides an efficient and user-friendly mechanism for calculating employee payroll, automating the payroll process and reducing manual calculations. The visual interface allows easy interaction with the program, enhancing user experience and efficiency in managing employee payroll for the TK-Tec company.

Learn more about Windows Form here:

https://brainly.com/question/34209563

#SPJ11