Some help with Visual Basic .Net programming?

Jun 4, 2006 at 8:43 PM Thread Starter Post #1 of 4

rockin_amigo14

Headphoneus Supremus
Joined
Jan 3, 2006
Posts
2,249
Likes
11
so my grade kind of depends on this, and not only do I not know how to do it, but I also don't have time, besides class (50 minutes). It's due wednesday, I believe. If anyone has time and wants to help (or do it
evil_smiley.gif
), please let me know, and I can email you the prompt.
 
Jun 4, 2006 at 8:58 PM Post #3 of 4
Even if your grade depends on this, you need to do yourself. How can you learn if someone else does it for you?
 
Jun 5, 2006 at 12:17 AM Post #4 of 4
Quote:

Originally Posted by hembergler
Even if your grade depends on this, you need to do yourself. How can you learn if someone else does it for you?



i haven't done one code myself this year. i have to take this class because Maryland requires one Technology credit to graduate. It's not something I have interest or skill in.

Prompt:

Problem:
In order to better organize its business, the MRHS Lawn Service wants to computerize its customer list. The information for each customer (name, address, size of lawn, and day of the week that they wish their lawn to be mowed) should be stored in array of structures. Write a program that allows the user to perform the following operations:

a) If the customer does not already exist, insert a new customer at the end of an array.
b) Remove a customer’s data from the vector and move the succeeding data in the array up so that no gap is left.
c) Create a sub-menu Print which gives the user two choices
1. Print the entire list of all customers to the screen.
2. Create a schedule of jobs for a given day. The schedule should be similar to the one shown in the sample run below. The table showing the name, address and total charge (including 5% sales tax) for each customer having their lawn cut on a specified day. The company charges 2 cents per square yard for cutting. This data will be written to a file called CurrentJobs.txt and displayed on the computer screen.
d) This program must be menu driven.
Add Ons – You must first have a, b, c, and d working perfectly, before moving on.
e) Edit a customer. Be able to make changes if you have entered data incorrectly or a customer’s data changes.
f) Output a customer list in alphabetical order.
g) Output a customer list in day order with the list including all customers.
Assume that the following data has been entered in the text file Lawn.txt,
Name Address Size Day
Judy Henn 2 Oaklyn Rd. 2001 Saturday
Norman Malnak 16 Manor Dr. 2500 Saturday
Hilda Crane 208 Longview Ave. 866 Tuesday
Rocco Capeletti 2 Computer Dr. 1222 Friday
Steve Rohrman 13 E. Cedar St. 1453 Wednesday
Nancy Little 162 Mapleshade Rd. 2323 Monday

First name will be a string of 10 characters.
Last name will be a string of 10 characters.
Address will be a string of 25 characters.
Data Displayed to screen should be in a list box.


So far, I've been able to import the customer list and add new ones. Maybe just ideas on how to do it, since I have until Wednesday.
 

Users who are viewing this thread

Back
Top