MCC - CIS162AD
CS2 Department Contacts - 15 points
   cs.gif

Create a project that will display the department, contact person's name and telephone number for the customer relations, marketing, order processing, and shipping departments of a factitious company.

Sample Output:

Sample Output cs2_output.jpg

Requirements:

Special Note:

Sometimes the Access Keys on the buttons do not show up until the Alt key is pressed. This setting can be changed on your computer.

For Windows XP try the following:

Test Data:

Department Department Contact Telephone Number
Customer Relations Tricia Smith 500-1111
Marketing Michelle Tyler 500-2222
Order Processing Kenna Ross 500-3333
Shipping Eric Johnson 500-4444


Sample Code:

        private void btnCustomer_Click(object sender, EventArgs e)
        {
            lblDepartment.Text = "Customer Relations";
            lblContact.Text = "Tricia Smith";
            lblPhone.Text = "500-1111";
        }

Submit: CS2Form.cs and CS2Form.Designer.cs


Revised: 8/11/2008 - www.mc.maricopa.edu/~marquez/cis162ad/cs2_dept_contacts.html