EMPLOYEE PAYROLL SYSTEM

Size: px
Start display at page:

Download "EMPLOYEE PAYROLL SYSTEM"

Transcription

1 EX.NO:1 DATE: EMPLOYEE PAYROLL SYSTEM AIM: To develop a Employee Payroll System using visual Basic. PROCEDURE: 1. Problem statement Software is to be designed for supporting a computerized employee payroll system. All the process involved in a employee payroll is computerized. The salary details have to be recorded and employee must be able to review it. The software which contains all data includes the details such as name, employee department and employee ID.It is access to employee given by the server. The system to be designed such that is automatically checks the data after data stored. The proposal system must satisfy user requirements, designed aesthetic and derive usability and quality assurance 2. Project planning Algorithm Start the process The administrator asks for the employee details. Then the administrator asks for the salary details The employee enters the salary details and the pay salary of employee 3. Problem requirement analysis Basic requirement Validity of the employee Enter the salary details of the employee Ensure the result analysis Functional requirement The employee must store the data to database Each time salary has to be recorded and the employee must be able to review all salary All data includes the following details: name, employee id, dept etc.. Access to the employee is given by the server The system to be designed such that it automatically checks the data after stored Non functional requirement System should be simple to operate without any formal training System must be reused and protest from library member and other unauthorized users Handle network and power failure Efficient and quick recover from the fault

2 SYSTEM REQUIREMENTS: FRONT END: VISUAL BASIC BACK END: MS ACCESS USE CASE DIAGRAM employee details Employee basic pay calculation System lop calculation gross salary calculation net pay calculation

3 SEQUENTIAL DIAGRAM employee emp details basic pay totalpay lop grosssal netsal system retrieve emp details basic pay calc based on ug pg add basic,da,rsia if lop not available gs=tp calculation of lop if lop available grosssal=tp-lop netsal calc by deducting pf if any netsal=grosssal if no pf update details intimate the employee COLLOBORATION DIAGRAM 1: retrieve emp details 2: basic pay calc based on ug pg employee emp details basic pay grosssal 3: add basic,da,rsia 10: intimate the employee 7: netsal calc by deducting pf if any 8: netsal=grosssal if no pf 4: if lop not available gs=tp totalpay 6: grosssal=tp-lop system 9: update details netsal 5: calculation of lop if lop available lop

4 CLASS DIAGRAM SOURCE CODE AND DESIGN FORM: FRONT END (VB 6.0) START PROGRAMS MICROSOFT VISUAL STUDIO 6.0 MICROSOFT VISUAL BASIC 6.0 OPEN STANDARD EXE DESIGN: FORM 1:

5 FORM 2:

6 FORM 3: CODING: FORM1: Private Sub cmdemployee_click() Form2.Show Private Sub cmdsalary_click() Form3.Show FORM 2: Private Sub cmdadd_click() Data1.Recordset.AddNew Private Sub cmddelete_click() Data1.Recordset.Delete If Data1.Recordset.EOF Then Data1.Recordset.MoveLast

7 ElseIf Data1.Recordset.BOF Then Data1.Recordset.MoveFirst Else Data1.Recordset.MoveNext End If MsgBox "Record Deleted Successfully", vbinformation Private Sub cmdfirst_click() Data1.Recordset.MoveFirst If Data1.Recordset.BOF Then MsgBox "Beginning Of File", vbcritical End If Private Sub cmdlast_click() Data1.Recordset.MoveLast If Data1.Recordset.EOF Then MsgBox "End Of File", vbcritical End If Private Sub cmdnext_click() Data1.Recordset.MoveNext If Data1.Recordset.EOF Then Data1.Recordset.MoveLast MsgBox "End Of File", vbcritical End If Private Sub cmdprev_click() Data1.Recordset.MovePrevious If Data1.Recordset.BOF Then Data1.Recordset.MoveFirst MsgBox "Beginning Of File", vbcritical End If Private Sub cmdupdate_click() Data1.Recordset.Edit Data1.Recordset.Update Private Sub lableback_click() Form1.show Me.hide

8 Private Sub Form_Load() Form1.Hide Private Sub Form_Unload(Cancel As Integer) Form1.Show FORM 3: Private Sub cmdcalc_click() da.text = sal.text * 0.1 ta.text = sal.text * 0.2 hra.text = sal.text * 0.3 pf.text = sal.text * 0.2 gross.text = Val(da.Text) + Val(ta.Text) + Val(hra.Text) - Val(pf.Text) netsal.text = Val(sal.Text) - Val(gross.Text) Private Sub lableback_click() Form1.show Me.hide BACK END (MS ACCESS 7.0) STEPS: Goto Add-Ins and click visual data manager. Goto FileSelect New Select MS-AccessSelect Version 7.0 MDB Give database name and table name save. Create the database fields. Insert few records. Save the file. Close the database. Run the VB Program. Software testing Test cases Verification and validation test cases

9 Faults encounters during entry System response for irrelevant questions Mistakes done by user when entering details Incomplete application submission Action taken by the system when eligible and unavailability of seats Time delay in fees remittance Cancellation registration User interface test cases Is it easy to operate? Understandable Is it visually pleasing Is it efficient use Is there fast recovery from errors Result: Thus the system is developed using object oriented programming approach with the help of CASE tools EX.NO:2 DATE: ONLINE SHOPPING AIM: To develop a web-based shopping using visual basic. PROCEDURE: 1. Problem statement Software is to be designed for supporting a computerized Online Shopping. All the process involved in a Online Shopping is computerized. The price details have to be recorded and customer must be able to review it. The software which contains all data includes the details such as Dress name and Dress price. It is access to customer given by the server. The system to be designed such that is automatically checks the data after data stored. The proposal system must satisfy user requirements, designed aesthetic and derive usability and quality assurance 2. Project planning Algorithm Start the process The server asks for the customer details.

10 Then the server asks for the type of costume. The customer enters the personal details and the type of costumes they wanted. 3. Problem requirement analysis Basic requirement Validity of the credit card number. Enter the price details of the costumes Ensure the result analysis Functional requirement The customer must store the data about their details to database All data includes the following details: name, place, card number etc.. Access to the customer is given by the server The system to be designed such that it automatically checks the data after stored Non functional requirement System should be simple to operate without any formal training System must be reused and protest from unauthorized users. Handle network and power failure Efficient and quick recover from the fault SYSTEM REQUIREMENTS: SOURCE CODE AND DESIGN FORM: FRONT END : VISUAL BASIC BACK END: MS ACCESS START->PROGRAMS->MICROSOFT VISUAL STUDIO 6.0 -> MICROSOFT VISUAL BASIC 6.0 -> OPEN STANDARD EXE. USECASE DIAGRAM:

11 SEQUENTIAL DIAGRAM:

12 COLLABRATION DIAGRAM: STATE DIAGRAM

13 DESIGNS: FORM 1:

14 FORM 2: FORM 3: FORM 4:

15 FORM 5: CODINGS:

16 FORM 1: Private Sub Command1_Click() Form2.Show Main.Hide FORM 2: Private Sub Command1_Click() Form3.Show Private Sub Command2_Click() Form4.Show Private Sub Command3_Click() Form2.Hide Main.Show FORM 3: Private Sub Command1_Click() Form5.Show Form5.Text5.Text = "saree" Form3.Hide Private Sub Command2_Click() Form5.Show Form5.Text5.Text = "silk saree" Form3.Hide FORM 4: Private Sub Command1_Click() Form5.Show Form5.Text5.Text = "shirt" Form4.Hide

17 Private Sub Command2_Click() Form5.Show Form5.Text5.Text = "pant" Form4.Hide FORM 5: Private Sub Command1_Click() Data1.Recordset.AddNew Data1.Recordset!cname = Text1.Text Data1.Recordset!cardno = Val(Text2.Text) Data1.Recordset!pwd = Text3.Text Data1.Recordset!cost = Val(Text4.Text) Data1.Recordset.Update MsgBox "data is saved", vbexclamation Text1.Text = "" Text2.Text = "" Text3.Text = "" Text4.Text = "" Text5.Text = "" Form2.Show Me.Hide Private Sub Form_Load() Data1.Visible = False Software testing

18 Test cases Verification and validation test cases Faults encounters during entry System response for irrelevant questions Mistakes done by user when entering details Incomplete application submission Action taken by the system when eligible and unavailability of seats Time delay in fees remittance Cancellation registration User interface test cases Is it easy to operate? Understandable Is it visually pleasing Is it efficient use Is there fast recovery from errors CONCLUSION: Thus the web-based online shopping are implemented and executed.

19 EX.NO : 3 DATE: BANKING SYSTEM AIM: To create a Banking system with debit and credit ledger report creation by using Visual Basic. PROCEDURE: 1. Problem statement Software is to be designed for supporting a computerized Online Voting. All the process involved in a Online Voting is computerized. The party details have to be recorded and voter must be able to view it. The software which contains all data includes the details such as Elector name and Party name. It is access to party name given by the server. The system to be designed such that is automatically checks the data after data stored. The proposal system must satisfy user requirements, designed aesthetic and derive usability and quality assurance 2. Project planning Algorithm Start the process The server asks for the voter details. Then the server show the party list. The person enter the party name as they want. 3. Problem requirement analysis Basic requirement Collect the parties. Enter the Elector name and the parties. Ensure the result analysis. Functional requirement The voter must store the data about their details to database All data includes the following details: name and party name. Access to the elector is given by the server The system to be designed such that it automatically checks the data after stored Non functional requirement System should be simple to operate without any formal training System must be reused and protest from unauthorized users. Handle network and power failure Efficient and quick recover from the fault

20 SYSTEM REQUIREMENTS: SOURCE CODE AND DESIGN FORM: FRONT END : VISUAL BASIC BACK END: MS ACCESS START->PROGRAMS->MICROSOFT VISUAL STUDIO 6.0 -> MICROSOFT VISUAL BASIC 6.0 -> OPEN STANDARD EXE. DIAGRAMS: USE CASE DIAGRAM:

21 SEQUENCE DIAGRAM: COLLABORATION DIAGRAM:

22 ACTIVITY DIAGRAM: DESIGNS: FORM 1:

23 FORM 2: FORM 3:

24 CODINGS: Form1: Private Sub Command1_Click() Text1.Text = "" Text2.Text = "" Text3.Text = "" Text4.Text = "" Text5.Text = "" Text6.Text = "" Private Sub Command2_Click() Data1.Recordset.AddNew MsgBox "record succesfuly inserted" Private Sub Command3_Click() Data1.Recordset.Edit Data1.Recordset.Update Data1.Recordset.Close MsgBox "record updated successfully" Private Sub Command4_Click() Text1.Text = "" Text2.Text = "" Text3.Text = "" Text4.Text = "" Text5.Text = "" Text6.Text = "" Data1.Recordset.Delete MsgBox "record deleted succesfully" Private Sub Command5_Click() Form2.Show Form1.Hide Private Sub Command6_Click() Form3.Show Form1.Hide

25 Form2: Private Sub Command1_Click() Form1.Text4.Text = Form2.Text1.Text Form1.Text6.Text = Val(Form1.Text6.Text) + Val(Form1.Text4.Text) Form1.Label4.BackColor = &H F Form1.Show Unload Me Form3: Private Sub Command1_Click() Form1.Text5.Text = Form3.Text1.Text Form1.Text6.Text = Val(Form1.Text4.Text) - Val(Form1.Text5.Text) Form1.Label6.BackColor = &H Form1.Show Unload Me Software testing Test cases Verification and validation test cases Faults encounters during entry System response for irrelevant questions Mistakes done by user when entering details Incomplete application submission Action taken by the system when eligible and unavailability of seats Time delay in fees remittance Cancellation registration User interface test cases Is it easy to operate? Understandable Is it visually pleasing Is it efficient use Is there fast recovery from errors CONCLUSION: Thus the banking system is implemented and executed successfully

26

AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software

AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software Ex. No.1 Date: ONLINE COURSE RESERVATION AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software PROBLEM STATEMENT As the head of information systems for

More information

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is InputBox( ) Function An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is A = InputBox ( Question or Phrase, Window Title, ) Example1: Integer:

More information

ONLINE RAILWAY RESERVATION SYSTEM

ONLINE RAILWAY RESERVATION SYSTEM Ex. No: Date: ONLINE RAILWAY RESERVATION SYSTEM AIM: methodologies To develop a software for online railway reservation system project by using software ALGORITHM: Step1: Open a VB project. Step2: Design

More information

Programming with visual Basic:

Programming with visual Basic: Programming with visual Basic: 1-Introdution to Visual Basics 2-Forms and Control tools. 3-Project explorer, properties and events. 4-make project, save it and its applications. 5- Files projects and exercises.

More information

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

More information

ต วอย างการสร างฟอร ม เมน การใช งาน

ต วอย างการสร างฟอร ม เมน การใช งาน ต วอย างการสร างฟอร ม เมน การใช งาน Option Explicit Dim conn As New ADODB.Connection Dim rs As New ADODB.Recordset Dim Sql As String Private Sub Command6_Click() Form2.Hide Form3.Show Private Sub Command7_Click()

More information

Employee Online Open Enrollment Quick Reference Guide

Employee Online Open Enrollment Quick Reference Guide Employee Online Open Enrollment Quick Reference Guide You may enroll online for your benefits during the open enrollment period. Please refer to the steps below for additional information on online enrollment.

More information

PROGRAM 1: SIMPLE CALCULATOR

PROGRAM 1: SIMPLE CALCULATOR PROGRAM 1: SIMPLE CALCULATOR Option Explicit Dim operand1 As Double, operand2 As Double Dim op1 As Double, op2 As Double Dim operator As String Dim cleardisplay As Boolean Private Sub Cmdclear_Click()

More information

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara 61 LAMPIRAN 61 Listing Program Form 1 ( Barang ) Dim CnSuzuya As ADODB.Connection Dim CommBar As ADODB.Command Dim rsbar As ADODB.Recordset Dim StrSql As String Dim psn As Byte Private Sub Form_Load()

More information

The Control Properties

The Control Properties The Control Properties Figure Before writing an event procedure for the control to response to a user's input, you have to set certain properties for the control to determine its appearance and how it

More information

Online Application System. User Manual

Online Application System. User Manual Online Application System User Manual Index Checklist User Checklist Below is the list of document that candidate should keep ready while using UKPSC - Online Application System first time. Mobile No:

More information

User Guide for Payroll Service (APS+)

User Guide for Payroll Service (APS+) User Guide for Payroll Service (APS+) - Payment by File Upload - Payment by Preset Template No part of this document may be reproduced, stored in a retrieval system of transmitted in any form or by any

More information

How to fill JMI 2017 form

How to fill JMI 2017 form How to fill JMI 2017 form www.jmi.ac.in Click here Click on this link Steps to be followed for filling the online application: Before proceeding to fill up the online application form, please ensure that

More information

TO DEVELOP A PROBLEM STATEMENT

TO DEVELOP A PROBLEM STATEMENT DHANALAKSHMI COLLEGE OF ENGINEERING DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING CS6511 CASE TOOLS LAB Expt. No. 1 TO DEVELOP A PROBLEM STATEMENT 1. Passport Automation System 1. Problems Analysis and

More information

Online show submission for artwork

Online show submission for artwork Online show submission for artwork www.showsubmit.com ShowSubmit is a web-based entry system for online submission of artwork to juried exhibitions including management of the entry data and images, with

More information

CENTAC HELP DOCUMENT FOR OTHER STATE. CENTAC Homepage:

CENTAC HELP DOCUMENT FOR OTHER STATE. CENTAC Homepage: CENTAC HELP DOCUMENT FOR OTHER STATE CENTAC Homepage: http://www.centaconline.in Dear Candidate, Good day and wishes from CENTAC Team for your successful placements via centac. Along this journey I will

More information

MAHARECRUITMENT. maharecruitment.mahaonline.gov.in. Online Application System User Manual

MAHARECRUITMENT. maharecruitment.mahaonline.gov.in. Online Application System User Manual MAHARECRUITMENT maharecruitment.mahaonline.gov.in Online Application System User Manual Index Sr No Title 1 User - Checklist 2 Application Process Flow 3 Steps : Application Process 4 Step 1: New User

More information

RISK ASSESSMENTS AND INTERNAL CONTROL CIS CHARACTERISTICS AND CONSIDERATIONS CONTENTS

RISK ASSESSMENTS AND INTERNAL CONTROL CIS CHARACTERISTICS AND CONSIDERATIONS CONTENTS CONTENTS Paragraphs Introduction... 1 Organizational Structure... 2 Nature of Processing... 3 Design and Procedural Aspects... 4 Internal Controls in a CIS Environment... 5 General CIS Controls... 6-7

More information

Online Application System User Manual

Online Application System User Manual Online Application System User Manual Index Sr No Title 1 User Checklist 2 Application Process Flow 3 Steps: Application Process Step 1:New User Registration/Create User Account ( 1 st time User) Step

More information

New users: You have 90 minutes of free support with CheckMark Payroll for setting up your company. They can be reached at:

New users: You have 90 minutes of free support with CheckMark Payroll for setting up your company. They can be reached at: 2 Payroll 1 Payroll New users: You have 90 minutes of free support with Payroll for setting up your company. They can be reached at: www.checkmark.com. 1.1 Payroll -Transfer Files to ASICS Before your

More information

Rooftop Industries Pvt. Ltd.

Rooftop Industries Pvt. Ltd. Rooftop Industries Pvt. Ltd. Production and inventory management system A level Computing Project Shritesh Bhattarai Little Angels' College 1 Table of Contents Definition, investigation and analysis...

More information

Register yourself (for new applicants who are registering for Examination 2016)

Register yourself (for new applicants who are registering for Examination 2016) Carefully read this guide before you proceed for filling up the form. It will help you to gain knowledge as to how to fill up and submit your Application Form. This segment will guide you through the operational

More information

NOTES: Procedures (module 15)

NOTES: Procedures (module 15) Computer Science 110 NAME: NOTES: Procedures (module 15) Introduction to Procedures When you use a top-down, structured program design, you take a problem, analyze it to determine what the outcome should

More information

ADP Reporting Skills Business Requirements ADP Pro User Conference

ADP Reporting Skills Business Requirements ADP Pro User Conference ADP Reporting Skills Business Requirements 2015 ADP Pro User Conference Disclaimer The screen shots used in this presentation come from the current version of ADP Custom Reporting. What you see when you

More information

To register and set up your access. Click the register button the next screen you see will look like this:

To register and set up your access. Click the register button the next screen you see will look like this: Online Registration Help When you click the button to register online, you will be taken to our Dance Studio management system where you will be able: To register as a first time user and 1. Set yourself

More information

Computerized Payroll Accounting User s Guide

Computerized Payroll Accounting User s Guide Computerized Payroll Accounting User s Guide COMPUTERIZED PAYROLL ACCOUNTING After studying this appendix, you will be able to: 1 2 3 4 5 6 7 8 Identify the components and procedures of a computerized

More information

On Railway Reservation. U G D C A Semester VI. Roll No DA

On Railway Reservation. U G D C A Semester VI. Roll No DA On Railway Reservation U G D C A Semester VI Submitted to: Dr. P. K. Sen (Co-ordinator) Submitted By: (Name of Student) Roll No. 14836DA Contents 1. Acknowledgement 2. Objectives 3. Declaration 4. Analysis

More information

USER MANUAL NEET-MDS

USER MANUAL NEET-MDS USER MANUAL NEET-MDS Home Page for NEET-MDS Step 1: Visit the URL www.nbe.edu.in for accessing the National Board of Examination portal. Step 2: Click on NEET-MDS Button. Step 3: After click on NEET-MDS

More information

2Practicals Visual Basic 6.0

2Practicals Visual Basic 6.0 2Practicals Visual Basic 6.0 Practical 1: 1. Navigation of Visual Basic Integrated Development Environment The Visual Basic IDE is made up of a number of components Menu Bar Tool Bar Project Explorer Properties

More information

Get the most from your Health Savings Account. Your guide to your HSA and online account access

Get the most from your Health Savings Account. Your guide to your HSA and online account access Get the most from your Health Savings Account Your guide to your HSA and online account access 1 Health Savings Account Investments Contents Getting started... 2 Accessing the BBPadmin Online Portal...

More information

Report It TN. User Manual

Report It TN. User Manual Report It TN User Manual Table of Contents User Account 3 Creating NAUPA Files 5 Uploading Files Negative Report Making Payments 6 9 11 More Information 14 User Account Register 1. Select Register Now.

More information

Lecture 10 Online Portal http://structuredprogramming.wikispaces.com/ Menus A menu is a list of functions that a program can perform; the user chooses the desired function from the list. E.g., 1 convert

More information

Guidelines to fill up the Application Form Online

Guidelines to fill up the Application Form Online Guidelines to fill up the Application Form Online What all do you need to complete the Online application process for ISM? As an applicant you would need the following: 1. An E-mail ID for registration

More information

LAMPIRAN LIST PROGRAM

LAMPIRAN LIST PROGRAM LAMPIRAN LIST PROGRAM 1. Modules Public conn As New ADODB.Connection Public rstb_pendekatan As ADODB.Recordset Public rstb_solusi As ADODB.Recordset Public rstb_alasan As ADODB.Recordset Public rstb_pilihan

More information

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6 HARP_VB projet en VB6 Option Explicit Dim Value As Integer Dim i As Integer Dim il As Long Dim LL, L1S, L250µS, L500µS, L1mS, L2mS, L5mS, L10mS As Single Dim offsetdepart As Long Dim police(256, 8) As

More information

E-Book Typing Project Sample Image file

E-Book Typing Project Sample Image file E-Book Typing Project Sample Image file Such Pages will be given. One page will have 50 to 55 lines approx. and it has to be typed in the company software as shown below. Project Plans Project Name: E-Book

More information

Guidelines to fill up the Application Form of University of North Bengal Online Application (Academic session )

Guidelines to fill up the Application Form of University of North Bengal Online Application (Academic session ) Guidelines to fill up the Application Form of University of North Bengal Online Application (Academic session 2018-2019) What all do you need to complete the Online application process for NBU Online Application?

More information

FC York Website Registration

FC York Website Registration FC York Website Registration This document is intended to provide a general overview of the FC York website registration process. This guide will explain how to register to the FC York website as a new

More information

Visual Basic , ,. Caption Hello, On Off. * + +, -. 1-Arrow, , 2- Cross. - project1.vbp, 4-form1.frm.

Visual Basic , ,. Caption Hello, On Off. * + +, -. 1-Arrow, , 2- Cross. - project1.vbp, 4-form1.frm. Visual Basic 6.0 1.,. Caption Hello, On Off. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm...!"# 2/59 3...

More information

CYMA IV. Accounting for Windows. CYMA IV Getting Started Guide. Training Guide Series

CYMA IV. Accounting for Windows. CYMA IV Getting Started Guide. Training Guide Series CYMA IV Accounting for Windows Training Guide Series CYMA IV Getting Started Guide November 2010 CYMA Systems, Inc. 2330 West University Drive, Suite 4 Tempe, AZ 85281 (800) 292-2962 Fax: (480) 303-2969

More information

-Go to and click Tickets then Ticket Central (highlighted in red)

-Go to   and click Tickets then Ticket Central (highlighted in red) Customers with an email address on file were sent one of the emails above. If a customer has a LINKED account (have ordered online before) they received an email with just their customer number (example:

More information

Employee Self Service Lite. Version

Employee Self Service Lite. Version Employee Self Service Lite Version 2.15.0 Employee Self Service Employees can access from any computer. view their earnings summary and check history. print past check information. print W2s for past years.

More information

Frequently Asked Questions (FAQ)

Frequently Asked Questions (FAQ) You are requested to go through all the questions & answers in this section and also the Advertisement Notification before proceeding for Registration and subsequent submission of Online Application Form

More information

Nuclear Fuel Complex Recruitment Application User Manual

Nuclear Fuel Complex Recruitment Application User Manual Nuclear Fuel Complex Recruitment Application User Manual The application is best viewed in Google Chrome Version 66.0.3359.139 Browse the NFC website, following screen will be displayed. For New Applicant,

More information

L A M P I R A N. Universitas Sumatera Utara

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N Form 1 '====================================================== 'SUHU FLUIDA : ' Suhu 10 C Const a1 = 0.9998 Const B1 = 1.307 Const C1 = 0.01251 ' Suhu 20 C Const a2 = 0.9983 Const B2 =

More information

Kenner Citizen Self Service

Kenner Citizen Self Service Kenner Citizen Self Service Online License Renewals First Time Registration In order to register for online renewals, you will need several pieces of information that are listed below: User Name and Password

More information

22. VB Programming Fundamentals Data Access with Data Objects

22. VB Programming Fundamentals Data Access with Data Objects 22. VB Programming Fundamentals Data Access with Data Objects 22.1 Data Access Object MS Data Access Object (DAO) enables you to use a programming language to access and manipulate data in local or remote

More information

BLYTHEVILLE EMPLOYEE ACCESS CENTER GUIDE

BLYTHEVILLE EMPLOYEE ACCESS CENTER GUIDE BLYTHEVILLE EMPLOYEE ACCESS CENTER GUIDE Table of Contents Section 1 Page 2 About the Employee Access Center (EAC) Section 2 Logging into EAC Page 3 Section 3 Employee Tasks Page 5 -Demographic Information

More information

Introductory Offer for Galaxy Note 8 Terms & Conditions: ( Introductory Offer ) on Galaxy Note8 ( Device ).

Introductory Offer for Galaxy Note 8 Terms & Conditions: ( Introductory Offer ) on Galaxy Note8 ( Device ). Introductory Offer for Galaxy Note 8 Terms & Conditions: 1. Samsung India Electronics Pvt. Ltd. introduces the Introductory Offer ( Introductory Offer ) on Galaxy Note8 ( Device ). 2. The Introductory

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. frmmenu.frm Dim CN As Connection Dim rshapus As Recordset Private Sub DfaHasil_Click() Call frmlap.cetak Private Sub Form_Load() Set CN = New ADODB.Connection CN.ConnectionString

More information

1. Requirements. 2. Getting started 2.1. Setting up a web account Logging in

1. Requirements. 2. Getting started 2.1. Setting up a web account Logging in Toll Collect Service Partner Portal GUIDE Contents 1. Requirements 2. Getting started 2.1. Setting up a web account 2. 2. Logging in 3. Using the service partner portal 3.1. Overview (home page) 3.2. Searching

More information

Business Online and Mobile Banking User Guide

Business Online and Mobile Banking User Guide Business Online and Mobile Banking User Guide 1. Online Enrollment 2. Login Process & Device Registration 3. Accounts & Accounts Details and Transaction History 4. Activity Center 5. Secure Messages 6.

More information

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB Visual Programming 1. What is Visual Basic? Visual Basic is a powerful application development toolkit developed by John Kemeny and Thomas Kurtz. It is a Microsoft Windows Programming language. Visual

More information

CA IPCC PASS GUARANTEE SYLLABUS Accounts

CA IPCC PASS GUARANTEE SYLLABUS Accounts Accounts Exam 1 Accounting Standards - 1,2,3,13 Exam 2 Accounting Standards - 7,9,10,14 Exam 3 Exam 7 Exam 8 Exam 10 Exam 11 Exam 12 Exam 13 Exam 14 Exam 15 Exam 16 Exam 17 Exam 18 Final Accounts Of Company

More information

Understanding the MsgBox command in Visual Basic

Understanding the MsgBox command in Visual Basic Understanding the MsgBox command in Visual Basic This VB2008 tutorial explains how to use the MsgBox function in Visual Basic. This also works for VBS MsgBox. The MsgBox function displays a message in

More information

Public User Manual 1

Public User Manual 1 Public User Manual 1 TABLE OF CONTENTS Event Calendar 3 Event Registration 5 Location 5 Contact and Billing 5 Attendee 8 Session 8 Confirmation 9 2 EVENT CALENDAR From this calendar you can find upcoming

More information

Guidelines to fill up the Application Form of University of North Bengal (B.A. LLB) Online

Guidelines to fill up the Application Form of University of North Bengal (B.A. LLB) Online Guidelines to fill up the Application Form of University of North Bengal (B.A. LLB) Online What all do you need to complete the Online application process for NBU (B.A. LLB)? As an applicant you would

More information

Jamia Millia Islamia

Jamia Millia Islamia OFFICE OF CONTROLLER OF EXAMINATIONS GUIDELINES TO FILL ONLINE APPLICATION FORM 2018-19 Jamia Millia Islamia (A Central University by an ACT of Parliament) NAAC Accredited Grade A Guidelines to fill up

More information

ONLINE PAYROLL REPORTING INSTRUCTIONS

ONLINE PAYROLL REPORTING INSTRUCTIONS ONLINE PAYROLL REPORTING INSTRUCTIONS Version 1.1 Online Reporting / Ver. 1.2 / November 2014 1 TABLE OF CONTENTS Section Description Page OT NLINE PAYROLL REPORTING...3 ONLINE PAYROLL REPORTING HELP...4

More information

Control Properties. Example: Program to change background color

Control Properties. Example: Program to change background color Control Properties Before writing an event procedure for the control to response to an event, you have to set certain properties for the control to determine its appearance and how will it work with the

More information

Lookup Project. frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function:

Lookup Project. frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function: Lookup Project frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function: Help About, in a Message Box lookup.vbp programmed by C.Gribble Page 2 Code for

More information

e-canteen System Presentation

e-canteen System Presentation Greenwood International School e-canteen System Presentation Version 1.0 Last Update on 28-10-2018 Copyright 2018, Greenwood International School. All rights reserved 1 e-canteen System GIS is introducing

More information

Welcome to MyTASC, Release 1.0!

Welcome to MyTASC, Release 1.0! 1 FX-3981-032907 Welcome to MyTASC, Release 1.0! MyTASC 1.0 is your new portal to the tools you need to manage your FlexSystem Cafeteria Plan. The features in MyTASC 1.0 greatly improve usability, functionality,

More information

Getting Started with myschoolbucks

Getting Started with myschoolbucks Getting Started with myschoolbucks Congratulations, your school district now offers myschoolbucks, a convenient and secure online payment and parent information portal! With myschoolbucks you can deposit

More information

USER GUIDE TO FILL THE ONLINE APPLICATION FORM FOR OUCET -2018

USER GUIDE TO FILL THE ONLINE APPLICATION FORM FOR OUCET -2018 USER GUIDE TO FILL THE ONLINE APPLICATION FORM FOR OUCET -2018 The candidates are advised to be ready with the following mandatory / optional details to fill in the appropriate fields before filling the

More information

Guidelines to fill up the Application Form Online

Guidelines to fill up the Application Form Online Guidelines to fill up the Application Form Online 2018-19 Jamia Millia Islamia (A Central University by an ACT of Parliament) NAAC Accredited Grade A Guidelines to fill up the Application Form Online What

More information

Visual Basic ,

Visual Basic , Visual Basic 6.0..!"# !"# $#%$$"& ( ( 6.0) 2 $, -&, - 1.,. Caption Hello, On O ff. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm. 2/59 !"# $#%$$"& ( ( 6.0) 3 $, -&, - 3/59 !"# $#%$$"&

More information

CBS Login Page. ACCESS KEY: employee # (ex.1234) PASSWORD: password1

CBS Login Page. ACCESS KEY: employee # (ex.1234) PASSWORD: password1 CBS Login Page ACCESS KEY: employee # (ex.1234) PASSWORD: password1 Once you are logged in Once you are logged in Click on Profile tab Screen should open up to Personal tab Personal Tab: Personal Tab cont.:

More information

Visual Basic 6 Lecture 7. The List Box:

Visual Basic 6 Lecture 7. The List Box: The List Box: The function of the List Box is to present a list of items where the user can click and select the items from the list or we can use the List Box control as a simple memory to save data.

More information

WEB PAY EMPLOYEE GUIDE

WEB PAY EMPLOYEE GUIDE Revised 4/14/2017 WEB PAY EMPLOYEE GUIDE Client Resource WWW.PAYLOCITY.COM TABLE OF CONTENTS WEB PAY... 2 SELF SERVICE PORTAL... 9 HOME... 26 EMPLOYEES... 35 PAYROLL... 108 NOTIFICATIONS... 113 GLOSSARY...

More information

New Mexico Taxation & Revenue Department To Roll Out New CRS E-Filing System

New Mexico Taxation & Revenue Department To Roll Out New CRS E-Filing System New Mexico Taxation & Revenue Department To Roll Out New CRS E-Filing System New Mexico Taxation and Revenue Secretary Demesia Padilla announced that the Department will be implementing a new E-filing

More information

WELCOME TO THE AMAZON MASTERY WORKSHOP TO GET YOU STARTED HERE ARE THE THINGS YOU NEED TO PREPARE

WELCOME TO THE AMAZON MASTERY WORKSHOP TO GET YOU STARTED HERE ARE THE THINGS YOU NEED TO PREPARE WELCOME TO THE AMAZON MASTERY WORKSHOP TO GET YOU STARTED HERE ARE THE THINGS YOU NEED TO PREPARE Before you begin here are the things you need to do to get you started. Firstly.. go to https://www.facebook.com/groups/azonasia/

More information

3 Citi Wallet Service - FAQ. 1) Get Started Q1. How can I become a 3 Citi Wallet user?

3 Citi Wallet Service - FAQ. 1) Get Started Q1. How can I become a 3 Citi Wallet user? 3 Citi Wallet Service - FAQ 1) Get Started Q1. How can I become a 3 Citi Wallet user? You will need a(n): 3 Citi Wallet supported NFC-enabled Android smartphone or an iphone (4 or above) 3HK monthly mobile

More information

SCREEN ADD SOURCE FUNCTION

SCREEN ADD SOURCE FUNCTION SCREEN 505 - ADD SOURCE FUNCTION This function is used to add a payroll source record in the P2PAY File. This function allows for the addition of the payroll items without data existing on the Active Budget

More information

Accounting. Removal of Disbursement and Payroll tabs from Station Setup screen

Accounting. Removal of Disbursement and Payroll tabs from Station Setup screen Release Notes FLEX DMS Release 7.3.4 Accounting Removal of Disbursement and Payroll tabs from Station Setup screen Benefit: The removal of these tabs will eliminate any confusion regarding printer setups

More information

M2-R3: BUSINESS SYSTEMS. NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions.

M2-R3: BUSINESS SYSTEMS. NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. M2-R3: BUSINESS SYSTEMS NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. 2. PART ONE is to be answered in the TEAR-OFF ANSWER SHEET

More information

BTA-ONLINE INTERNET-BANKING SYSTEMS FOR LEGAL ENTITIES

BTA-ONLINE INTERNET-BANKING SYSTEMS FOR LEGAL ENTITIES User manual Customer Version 1.0 BTA-ONLINE INTERNET-BANKING SYSTEMS FOR LEGAL ENTITIES 1 Contents: 1. Logging-in.... 3 p. 2. Logging-out.. 3 p. 3. Change of password.... 4 p. 4. Creating documents in

More information

Client-Account Receivable

Client-Account Receivable Nexsure Training Manual - Accounting Client-Account Receivable In This Chapter Client Accounts Receivable Entity Definition Receive Payments from Clients Relating to Policies Allocation of Payment Leave

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Grade 10 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Duration: 3.00 Hours Part 1 Choose the appropriate answer 1) Find the correct type

More information

Instructions for making payment through SBI Collect

Instructions for making payment through SBI Collect Gujarat State Eligibility Test (GSET) for Assistant Professor The Maharaja Sayajirao University of Baroda, Vadodara. Instructions for making payment through SBI Collect Payment of GSET Examination fee

More information

UOB TRANSACTION BANKING. BIBPlus Cash Management User Guide

UOB TRANSACTION BANKING. BIBPlus Cash Management User Guide UOB TRANSACTION BANKING BIBPlus Cash Management User Guide Table of Contents 1 Account Services 1.1 Account Summary 1.2 Account Statement 1.3 External Accounts 1.4 Trade Bill Summary 1.5 Global View 1.6

More information

17. Introduction to Visual Basic Programming

17. Introduction to Visual Basic Programming 17. Introduction to Visual Basic Programming Visual Basic (VB) is the fastest and easiest way to create applications for MS Windows. Whether you are an experienced professional or brand new to Windows

More information

Frequently Asked Questions PopMoney

Frequently Asked Questions PopMoney Frequently Asked Questions PopMoney What is PopMoney? PopMoney is an innovative personal payment service that eliminates the hassles of checks and cash. Now, sending and receiving money is as easy as emailing

More information

In this example, we will prepare a Pre-Encumbrance to indicate commitments for our graduate student researchers' salary.

In this example, we will prepare a Pre-Encumbrance to indicate commitments for our graduate student researchers' salary. Enterprise Systems Solutions Quick Reference Guide Prepare a Pre-Encumbrance Journal In this example, we will prepare a Pre-Encumbrance to indicate commitments for our graduate student researchers' salary.

More information

Secure online access to your benefits

Secure online access to your benefits Secure online access to your benefits We encourage you to use IntegraBMS On-Line! IntegraBMS On-Line is your secure internet connection to your own benefits information including: Viewing of Claims and

More information

Hello Paisa Online Remittance Portal (HPORP) Version 1.0 User Guide

Hello Paisa Online Remittance Portal (HPORP) Version 1.0 User Guide Hello Paisa Online Remittance Portal (HPORP) Version 1.0 User Guide A Table of Contents 1. Introduction 3 2. Login 3 3. Registration 4 3.1 Login Details 4 3.2 Personal Information 4 3.3 Contact Information

More information

Control Structures. Control Structures 3-1

Control Structures. Control Structures 3-1 3 Control Structures One ship drives east and another drives west With the selfsame winds that blow. Tis the set of the sails and not the gales Which tells us the way to go. Ella Wheeler Wilcox This chapter

More information

* IMPORTANT* Welcome to QVCC s Non Credit Online/Flexible Registration

* IMPORTANT* Welcome to QVCC s Non Credit Online/Flexible Registration Welcome to QVCC s Non Credit Online/Flexible Registration For Non Credit Courses * IMPORTANT* Do not use your internet browser s BACK button while in Flexible Registration. Press OK to any security popups

More information

1. Access the Journal Entry Form via University Forms and Documents.

1. Access the Journal Entry Form via University Forms and Documents. Creating and Submitting a Journal Entry Purpose: Journal Entries may be completed to make corrections to posted expenses to include payroll, p-card, expense reports, purchase requisitions, and local funding

More information

Information on how to register, book and pay online for The 24th FAFAI Seminar

Information on how to register, book and pay online for The 24th FAFAI Seminar Information on how to register, book and pay online for The 24th FAFAI Seminar A) Create new account Create your FAFAI web account by clicking on Create New User as shown below B) Submit Registration Form

More information

Popmoney FAQs. What is Popmoney?

Popmoney FAQs. What is Popmoney? Popmoney FAQs What is Popmoney? Popmoney is an innovative personal payment service that eliminates the hassles of checks and cash. Now, sending money is as easy as emailing and texting. And, you don't

More information

To ensure the best customer service you can now register a service or repair request online.

To ensure the best customer service you can now register a service or repair request online. To ensure the best customer service you can now register a service or repair request online. Then, you can enter your request, view the status of existing requests, and view your documents. We will keep

More information

Apple Pay FREQUENTLY ASKED QUESTIONS

Apple Pay FREQUENTLY ASKED QUESTIONS Apple Pay FREQUENTLY ASKED QUESTIONS At Park Bank, we want to make it easy and secure for you to use your credit card to make payments in stores and online. That s why we re pleased to offer Apple Pay

More information

E-Time Reporting Guide for Exempt Employees

E-Time Reporting Guide for Exempt Employees E-Time Reporting Guide for Exempt Employees CONTENTS Click on topic below to go directly to that page. OTHER LINKS IN THIS GUIDE LOG INTO THE ORACLE BUSINESS APPLICATIONS 1.1 How to Access, Log In and

More information

GAINPF (Government Aided Institutions Provident Fund System) A Project under Integrated Financial Management System (IFMS)

GAINPF (Government Aided Institutions Provident Fund System) A Project under Integrated Financial Management System (IFMS) NIC- Kerala State Centre User Manual Page 1 of 44 GAINPF (Government Aided Institutions Provident Fund System) A Project under Integrated Financial Management System (IFMS) For Finance Department, Govt.

More information

Certificate in Programming fundamentals CCII onwards Page 1 of 5 BHARATHIAR UNIVERSITY: COIMBATORE

Certificate in Programming fundamentals CCII onwards Page 1 of 5 BHARATHIAR UNIVERSITY: COIMBATORE Certificate in Programming fundamentals CCII 2013-14 onwards Page 1 of 5 BHARATHIAR UNIVERSITY: COIMBATORE 641046 CENTRE FOR COLLABORATION OF INDUSTRY AND INSTITUTIONS(CCII) CERTIFICATE IN PROGRAMMING

More information

How is information stored?

How is information stored? How is information stored? Stored in system files on disk Sequential Files Random Access Files Need to write programs to access, modify, append data Example: Bank account system Program to debit/credit

More information

IS 320 Spring 96 Page 1 Exam 1. Please use your own paper to answer the following questions. Point values are shown in parentheses.

IS 320 Spring 96 Page 1 Exam 1. Please use your own paper to answer the following questions. Point values are shown in parentheses. IS 320 Spring 96 Page 1 Please use your own paper to answer the following questions. Point values are shown in parentheses. 1. (10) Consider the following segment of code: If txtansicode.text < "0" Or

More information

How-To Guide. SigIDp (With Microsoft Access) Demo. Copyright Topaz Systems Inc. All rights reserved.

How-To Guide. SigIDp (With Microsoft Access) Demo. Copyright Topaz Systems Inc. All rights reserved. How-To Guide SigIDp (With Microsoft Access) Demo Copyright Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks and patents, visit www.topazsystems.com/legal. Table of Contents Overview...

More information