Write a program that allows a user to enter information relating to the name and salary details of an employee The user should be able to enter the name.

Slides:



Advertisements
Similar presentations
1 After completing this lesson, you will be able to: Create a new presentation using a design template. Enter text in the Slide pane. Create a new slide.
Advertisements

The Way to Success … Sta rt Sta rt Ak Technologies Mo | Visit.
Click here to start the game! 20 Points 30 Points 40 Points 50 Points 10 Points 20 Points 30 Points 40 Points 50 Points 30 Points 40 Points 50 Points.
1 After completing this lesson, you will be able to: Create a workbook. Understand Microsoft Excel window elements. Select cells. Enter text, numbers,
Chapter 7: Sub and Function Procedures
Yavapai College Banner Finance Budget Development Self Service Training Manual.
6 Lecture 2 Entering Charge Transactions and Patient Payments.
ABCD Tax System Ynial Adderley Ryan Busser Alen Cruz Bhavya Daya.
Querying a Database Using the Select Query Window
Arrays.
WELCOME TO. Click on Products Click Online Product=> Tax Professional.
Setting Up the INVENTORY & SERVICES Module Slideshow 8 A.
USER GUIDE TO OPEN OFFICE BY MARTIN ROCHE 11K. CONTENTS.
Tutorial 7: Sub and Function Procedures1 Tutorial 7 Sub and Function Procedures.
Programming with Microsoft Visual Basic th Edition CHAPTER SEVEN SUB AND FUNCTION PROCEDURES.
Programming with Microsoft Visual Basic 2012 Chapter 7: Sub and Function Procedures.
Creating Your PE Webshop Using SmartStore.biz This Tutorial assumes you have downloaded the software from This tutorial is based.
Vendor Module Screens. Screen 1 - Vendor Material This feature allows VENDOR to enter PO and list all the material from that vendor. This will help vendor.
® Microsoft Access 2010 Tutorial 11 Using and Writing Visual Basic for Applications Code.
Click on Reset your Password / Unlock Your Account
InvEasy (Project1) Please use speaker notes for additional information!
Click on “SUPERUSER” Please Enter Superuser Login Details and click on Login button.
Programming with Microsoft Visual Basic 2008 Fourth Edition
Programming Examples to Accompany Structure Topic Please use speaker notes for additional information!
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 2 The Visual Basic.NET Integrated Development Environment.
1 After completing this lesson, you will be able to: Start Word. Explore the Word window. Enter text in a document. Save a document. Close a document and.
Free Powerpoint Templates Page 1 Free Powerpoint Templates Ray Payroll Management.
Control Groups Workshop State of Indiana Instructor: Gerri Williams 2/6/2013.
GOALS BUSINESS MATH© Thomson/South-WesternLesson 1.1Slide 1 1.1Hourly Pay and Salary Calculate gross pay for hourly-rate employees Calculate gross pay.
Automating Collections - How to Simplify and Be More Effective.
Microsoft Access Lesson 2 Lexington Technology Center February 13, 2003 Bob Herring On the Web at
Illustration of a Visual Basic Program Running an Ada Program 1 by Richard Conn 11 September 1999.
Vocabulary in VB So Far. Assignment: Used to change the value of an object at run time Used to change the value of an object at run time.
Graphical User Interface You will be used to using programs that have a graphical user interface (GUI). So far you have been writing programs that have.
1. 2 Sales tax is calculated by finding the percent of the total purchase.
1.
Premium 2011 Setting Up the INVENTORY & SERVICES Module.
INTRODUCTORY GUIDE TO SURPLUS LINE INFORMATION PORTAL 2.0 (SLIP) CALIFORNIA’S ELECTRONIC FILING SYSTEM THE SURPLUS LINE ASSOCIATION OF CALIFORNIA Quick.
Sequencing The most simple type of program uses sequencing, a set of instructions carried out one after another. Start End Display “Computer” Display “Science”
Pay Example (PFirst98) Please use speaker notes for additional information!
You will need Dev C++ to help you with this project. If you do not already have this programming tool on your device you can visit
Salary Calculator. Design a page like the following.
1 1.Enter User Name 2.Enter Password 3.Select Language. Default is English 4.Click Login
1 After completing this lesson, you will be able to: Get around the Internet with your browser. Connect to the Internet. Print Web pages. Save Web pages.
SUPPLIER MODULE User’s Guide. Step 1. Click Files Step 2. Click Supplier.
BBT 10 Visual Basic 03 Enrichment. Tip Before creating any files for your project, first create a new folder Save all of your files in the folder Pieces.
Thursday, 11/17: Reality Town Info  Choose 1 occupation out of the 3 you printed out from Drive of Your Life  Pass out Transaction Registers  Anyone.
Flashcard Quiz Program BY: KISHIN ARUWANI. Background  This program will be created as a studying tool to give students the ability to create flashcards.
Microsoft Access Prepared by the Academic Faculty Members of IT.
COMPREHENSIVE Access Tutorial 11 Using and Writing Visual Basic for Applications Code.
1 Creating a Menu Bar on a Secondary Web Page  It is important for visitors to be able to move easily from one page to another  You will create a menu.
Employee Prints Record of Personnel Action (form SF 50 or SF 52)
ESS Tax Saving Investment Module
EMPLOYEE SELF SERVICE PORTAL (PROCESS DOCUMENT). ESS Portal – Login Steps to Employee.
DEPARTMENT MODULE User’s Guide. Step 1. Click Files Step 2. Click Department.
Creating a Workflow.
Diversey Rebates End User Manual.
After completing this lesson, you will be able to:
E-forestMandi Click Here for New Registration
Objectives Learn about Function procedures (functions), Sub procedures (subroutines), and modules Review and modify an existing subroutine in an event.
Online Enrollment Employee login available 24/7
Oki Data Americas.
Using the Vendor Portal
HOW TO CREATE A CLASS Steps:
1 To go to the next slide, click this button instead. A random slide will come up.
Directions: For slides 2 to 12, count the change as the coins and bills appear on the screen. Before clicking the final answer, count the change to yourself.
LESSON 12-1 Preparing Payroll Time Cards
Effort Reporting How to CERTIFY IN ECRT.
HOW TO A CASH EXPENSE REPORT IN PAYMENTNET
Tutorial 11 Using and Writing Visual Basic for Applications Code
Presentation transcript:

Write a program that allows a user to enter information relating to the name and salary details of an employee The user should be able to enter the name of the employee and the gross salary of that employee by way of a pair of text boxes. When the user clicks on a “save details” button, the name of each employee, their gross salary and tax paid should be saved in a random access file called “employees.dat” Use a function procedure to calculate the tax paid by each employee. The amount of tax paid should be calculated by multiplying their gross salary by 20%. The information held in the random access file should be displayed to the user in a picturebox when the “show details” button is pressed.

Form Design

In Standard Code Module… General Declaration section of frmEmployees

Open/Create RA File in Form_Load

Enter + Save Info

Function to calculate Tax

Display contents of file to user