CS 153 Data Structures I
Programming Assignment #1

Due: 1/18/2001 - during Demonstration Lab time

you will receive a recorded grade on this assignment
you are to create this assignment PRIOR to lab time
This programming assignment is designed to: In order to meet these goals you must
  1. Create a new project
  2. Create a dialog window
  3. Delete the text and the cancel button
  4. Put a 'GO' button on the window which executes a function OnButtonGo()
  5. Assign an appropriate ID and caption to the button
  6. put an int EditBox on the window
  7. Assign an appropriate ID to the edit box
  8. DO NOT create a function for the edit box
  9. Use the class wizard to add a CString variable for use by the edit box
Program Functionality Comments on Project structure:

    When you create a project named PROG1, the wizard will automatically build Prog1Dlg  .ccp & .h files and a CProg1 class.  Although it's not really true, you can think of the Prog1Dlg as being your main() program.  This is where you will put your OnButtonGo function and the CString variable that receives the content of your edit box.  (More on all of this as the semester progresses)