this is my assignment in a vb programming class, can you guys help me to program it or teach it to me how to program it?.. i'm new to vb so please do help me..thanks in advance..


INSTRUCTION:
1. You are required to solve all items specified.
2. Design all necessary modules/forms described in the given problem.
3. Data generated in solved problem number 1 should be used by the succeeding problems for testing.

GAMES

Create a system that contains the following modules:

1. A module that maintains (add, edit, delete, and search) a gamer information.

• gamer ID
• gamer name
• date of registration (mm/dd/yyyy)
• date of birth (mm/dd/yyyy)
• gamer points (initial value is 500)

A gamer name should be at least 7 characters long (maximum length is 25). The name should start with an alphabet. Succeeding character may any combination of letters and digits.

A gamer ID is generated by combining the first 3 letters of the gamer name with the dates of registration and birth and a 5-digit random number (padded with zeros).

Gamer Name and Date of Registration Generated Gamer ID
RHIHONNA
October 3, 2010
April 12, 2008 RHI-10032010-04122008-05170

2. A module that accepts a gamer ID, playing date and time. A gamer accumulates points every given time interval in the game period depending on a day and time the player played.

Days Time Interval Points Earned
Monday – Thursday 5 minutes 5
Friday 5 minutes 10
Saturday 3 minutes 25
Sunday 2 minutes 20

Players below 18 years old may only play during the weekends. Violation of the policy will forfeit the possible earned points.

SAMPLE DATA


Fields Values
Gamer ID RHI-10032010-04122008-05170
Gamer Name RHIHONNA
Date of Registration October 3, 2010
Date of Birth April 12, 2008
Gamer Points 500

[Date: October 3, 2010]
Gamer Name: RHIHONNA
Game Start Time: 12:03
Game End Time: 13:02

(Earned Points: 580)
Current Gamer Points: 1080


Fields Values
Gamer ID RHI-10032010-04122008-05170
Gamer Name RHIHONNA
Date of Registration October 3, 2010
Date of Birth April 12, 2008
Gamer Points 1080

[Date: October 15, 2010]
Gamer Name: CEDRICJEROME
Game Start Time: 09:06
Game End Time: 16:59

(Earned Points: 0 because player played on a weekday and below 18 years old)
Current Gamer Points: 1080