Sunday, December 7, 2014

New Employee E-mail Web Application Case Programming 2 Chapter 6 Page 541 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!


New Employee E-mail Web Application Case Programming 2 Chapter 6 Page 541 Shelly Cashman Series VB 2010 Visual Web Express



Product Description

REQUIREMENTS DOCUMENT

Application title: New Employee E-mail Web Application

Purpose: This application allows a new employee to set up an e-mail address at the WebSide Company.

Program Procedures:
From a Web application, the user should enter their first name and last name to create an e-mail address in the format: jim.bellweather@webside.com, with the first and last name in lowercase letters.

Algorithms, Processing, and Conditions:
1. The user must be able to enter their first name and their last name.
2. The user must select a department from a DropDownList object with the following choices: Accounting, Executive, Marketing, Sales, and Warehouse.
3. The user clicks the Submit button.
4. The information entered is validated.
5. The application displays the department and the new e-mail address in the format first name, dot, last name (all lowercase) @ sign, webside.com.

Notes and Restrictions:
1. Data Validation tools should be used. The first and last names are validated to confirm that they are not left blank.

Comments:
1. The e-mail address will be displayed in lowercase letters.
2. Place the title on the Site.master. Delete the second navigation button by selecting the
Smart Tag and Edit Menu Items. Select About and then click the Remove button (red x).



Buying A Computer Case Programming 9 Chapter 6 Page 472 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!

Product Description

Buying A Computer

The newest gaming computer costs $5000 for 31-inch screen, two 1 TB hard drives, a metallic case, and a blazing fast processor.Ten years ago, your grandmother gave you $2500. The money has been in a savings CD that earns compound interest of 7.5% per year.Write a Windows application that allows you to enter the amount in savings, the interest rate, and the number of years. Display a ListBox object with each year and the amount the entire account is worth at the end of that year. Determine whether you have saved enough money for the gaming computer.Non-numeric and negative values should not be accepted. Debug, and then publish the application.

Hint: The formula for compound interest for one year is:
Amount 5 Principal * (1 1 Rate). For 10 years of compound interest, this formula should be executed 10 times with the principal increasing to the new amount each year.

Galaxy Hotel Case Programming 8 Chapter 6 Page 472 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!

Product Description


Galaxy Hotel

The Galaxy Hotel asks you to write a Windows application that computes the occupancy rate of the hotel. Occupancy rate is a percentage that is equal to the number of rooms sold divided by the total number of rooms available. The hotel has seven floors. The user should use an InputBox function to respond to two questions about each floor: How many rooms are occupied on that floor? How many rooms on the floor are vacant? Display which floor you are asking about in each question. Display how many rooms are occupied and vacant on each floor in a ListBox object. After the user has entered all the information, display the following results: the total number of rooms at the hotel, the number of occupied rooms, and the number of vacant rooms. Also display the occupancy rate as a percentage, such as 61%.Non-numeric values should not be accepted. Do not accept negative numbers. Publish the application after testing the application 

Factorial Math Case Programming 7 Chapter 6 Page 471 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!

Factorial Math Case Programming 7 Chapter 6 Page 471 Shelly Cashman Series VB 2010 Express Form Code Preview

Factorial Math
Most calculators have an operation called a "factorial" which is shown on a calculator key as an exclamation
point. For example 5! (5 factorial) multiplies 5 * 4 * 3 * 2 * 1 to calculate the result of 120. Using loops to
compute the factorial, display the following factorials in a Listbox object:
1! 1
2! 2
3! 6
4! 24
5! 120
6! 720
7! 5040
8! 40320

Vacation Distance Travelled Calculator Case Programming 5 Chapter 6 Page 469 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!

Product Description

Application title:
Vacation Distance Calculator Windows Application

Purpose: This application computes the number of miles travelled given the speed limit and the number of days travelled driving cross country.

Program Procedures: In a Windows application, the user enters the speed limit and the number of days you plan to travel cross country. You will enter the number of hours you would like to drive each of the days based on places you plan to visit as you drive and other factors. For example, the first day you plan to drive only 4 hours because you are driving after work. The application displays the distance that you are able to travel for the entire trip based on the speed limit and the hours driven.

Algorithms, Processing, Conditions:
1. The application opens displaying a title. The user enters the speed limit and the and number of days you plan to drive.
2. The user clicks the Distance button to request the number of hours you plan to drive each day. The result of the total number of miles you plan to drive over the entire trip will be displayed.
3. A File menu contains a Clear and an Exit option. The Clear menu item clears the result and the entered number of miles per hour and time traveled. The Exit menu item closes the application.

Notes and Restrictions:
1. Non-numeric values should not be accepted.
2. The number of hours for one day of travel should not exceed 20 hours.

Comments: 1. The application allows decimal entries.

Double Your Pay Case Programming 4 Chapter 6 Page 468 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!

Product Description

Application title:
Double Your Pay Windows Application

Purpose:
This Windows application finds the amount of your pay if your pay is doubled each day, starting with a penny a day or a nickel a day. Instead of one month's salary, a boss offers her new employees a penny the first day and experienced employees a nickel the first day under the new pay system. Each day the pay will double 

Program Procedures: In a Windows application, the user enters the number of days in a pay period and the pay for the first day. The program calculates and displays the amount of pay for the pay period.

Algorithms,Processing and Conditions:
1. The user enters the number of days in the pay period.
2. The user selects a RadioButton object to indicate the pay amount of the first day: a penny or a nickel.
3. After the user enters the number of days and pay for the first day, the total amount earned is calculated and displayed.
4. A File menu contains a Clear and an Exit option. The Clear menu item clears the result and the RadioButton objects. The Exit menu item closes the application.

Notes and Restrictions:
1. Non-numeric values should not be accepted.
2. Negative values should not be accepted.
3. The minimum number of days for the pay period is 19 days for the new employees and 16 days for the experienced employees. The maximum number of days in a pay period is 22 days.

Football Fever Scoreboard Case Programming 3 Chapter 6 Page 466 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!

Football Fever Scoreboard Case Programming 3 Chapter 6 Page 466 Shelly Cashman Series VB 2010 Express Form Code Preview

Product Description

REQUIREMENTS DOCUMENT

Application title: Football Fever Scoreboard Windows Application

Purpose: This application calculates the points scored during a football game by one team.

Program Procedures: In a Windows application, the user enters each score one football team makes to display the team's score on the scoreboard.

Algorithms, Processing, Conditions:
1. The user clicks the Enter Score button in an InputBox object to enter a score after the and football team scores points in a game.
2. Each score and the running total is displayed in a ListBox.
3. After the user clicks the Cancel button in the InputBox object to end the game scoring, the total final score is displayed.
4. A File menu contains a Clear and an Exit option. The Clear menu item clears the result and the football scores. The Exit menu item closes the application.

Notes and Restrictions:
1. Non-numeric values should not be accepted.
2. A negative value should not be accepted.
3. Obtain the image from scsite.com/vb2010/ch6/images. Its name is Football.

USE CASE DEFINITION
1. The Windows application opens, displaying your favorite football team's name, scoreboard subtitle, a ListBox object that will display the football team scores throughout the game, and a Button object that allows the user to enter the scores.
2. A menu bar displays the File menu, which has two menu items: Clear and Exit. 
3. In an InputBox object, the user enters points a football team scores.
4. The program asks the user for the score again if the value is a negative or non-numeric number.
5. The program displays the total score.
6. The program displays the final score when the user clicks the Cancel button in the input box.
7. The user clicks the Clear menu item to clear the input and the result.
8. The user clicks the Exit menu item to close the application.

Car Rental Case Programming 8 Chapter 5 Page 375 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!


Preview of Running Application and Code:
Car Rental Case Programming 8 Chapter 5 Page 375 Shelly Cashman Series VB 2010 Express

Product Description

The Adventure Car Rental Company has asked that you create a Windows application for the rental of an adventure vehicle. The user selects the number of rental days, up to 7 days. The user also can select one of three types of vehicles. The types of vehicles and the cost per day for each vehicle is shown in the table below.

Vehicle ModelCost per Day
Jeep Wrangler$55.00
Jeep Grand Cherokee$85.00
Land Rover$125.00
The customer has a choice of filling the gas tank themselves at the end of their use, or prepaying for a full tank of gas ($52 total). If the vehicle will be driven by more than one driver, a multiple driver cost of $22 per day is added to the cost of the vehicle.Adventure has asked that the Windows application determine and display the total rental cost of the vehicle for the amount of time and the options chosen by the user.Adventure also has requested that you include all appropriate checking for invalid data entry by the user.

Technology Conference Registration Case Programming 7 Chapter 5 Page 374 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!


Preview of Running Application and Code:
Technology Conference Registration Case Programming 7 Chapter 5 Page 374 Shelly Cashman Series VB 2010 Express Form Code Preview

It is important that developers update their skills by attending developers' conferences. The Dynamic International Management Consortium (DIMC) runs and manages the ADSE (Active Developers Skill
Enhancement) Conference two times per year.To encourage companies to send multiple employees to the conference, the cost per attendee is determined based on the number of attending developers from a given
company. The table below specifies the cost per attendee.

Number of Conference
Registrations per
Company
Cost per Attendee
1$695
2-4$545
5-8$480
8 or more$395

Payroll Calculator Case Programming 6 Chapter 5 Page 373 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!


Preview of Running Application and Code:
Payroll Calculator Case Programming 6 Chapter 5 Page 373 Shelly Cashman Series VB 2010 Express Form Code Preview

Application title:
Payroll Calculator

Purpose: This application calculates the payroll for employees of the Food For All local grocery store.

Program Procedures:
In a Windows application, the user enters the employee's name, hours worked, and pay per hour. If the employee works more than 40 hours per week, the grocery store pays time-anda-half for overtime. The tax rate can be the single rate (18%) or at the family rate (15%).
The application should compute and display the gross pay, the tax based on the single or
family rate, and the net pay.

Algorithms,Processing,and Conditions:
1. The user must be able to enter the employee's name, hours worked, and pay per hour.
2. The user must be able to indicate if the tax rate is at the single rate (18%) or the family rate (15%).
3. The user must be able to initiate the calculation and the display of the gross pay, the tax amount based on the single or family rate, and the net pay.
4. A Clear button will clear the user's input and final results.

Notes and Restrictions:
1. If the employee name, hours worked, or pay per hour are blank, the user should be advised and asked for a valid entry.
2. If the hours worked or pay per hour are nonnumeric, the user should be advised and asked for a valid entry.
3. The minimum value for hours worked is 5 hours. The maximum for hours worked is 60. If the user enters an hours worked value not within the range, the user should be advised and asked for a valid entry.
4. The minimum pay per hour is $8.00. The maximum pay per hour is $40.00 per hour. If the user enters a pay per hour value not within the range, the user should be advised and asked for a valid entry.
5. The user must be able to clear the employee's name, the hours worked, the pay per hour, and the pay information.

Two Day Package Shipping Case Programming 5 Chapter 5 Page 371_372 Shelly Cashman Series VB 2010 Express

Click Below or Copy Link in Browser To Download!


REQUIREMENTS DOCUMENT

Application title: Two-Day Package Shipping

Purpose: This Windows application calculates the cost of shipping a package with two-day delivery.

Program Procedures:

The user enters the weight of the package (in pounds) and selects the destination of the package. The application will determine the cost of shipping. The destination of the package can be the continental U.S., Hawaii, or Alaska. If the package is going to Hawaii, a 20%surcharge is added to the shipping cost. If the package is going to Alaska, a 26% surcharge is added to the shipping cost.

Algorithms, Processing, Conditions:

1. The user must be able to enter the number of pounds the package weighs and indicate that the package is being mailed to the continental U.S., Hawaii, or Alaska.
2. The shipping costs are calculated based on the rates in the table in Figure 5-109 on the next page. A 20% surcharge is added if the shipping destination is Hawaii. A 26% surcharge is added if the shipping destination is Alaska.
3. The user must be able to initiate the calculation and the display of the shipping cost.
4. The user must be able to clear the weight of the package and the shipping cost.
Notes and Restrictions:
1. If the entry for the shipping weight is blank or nonnumeric, the user should be advised and asked for a valid entry.
2. The maximum weight for a package is 30 pounds. If the weight is greater than 30 pounds, or if the value entered is not greater than zero, the user should be advised and asked for a valid entry.