CSC 318 -- Project Message

Goal: Create an Application Wizard Project that displays a message or design in a window.

  1. Create a new project of type App Wizard (exe) with these features:
    • Single document
    • Document/View architecture support
    • English Language
    • No database support
    • No compound document support
    • Include support for Active X controls
    • Include docking toolbar, initial status bnar, printing and Print preview, 3D controls.
    • Create an MFC standard project, source file comments, and using the MFC Library as a shared DLL.
    • Create the classes CMessageView, CMessageApp, CMainFrame, and CMessageDoc, where CMessageView is derived from the CView class.

  2. Verify with the FileView that the classes CMessageView, CMessageApp, CMainFrame, and CMessageDoc have been created.

  3. Find the CMessageView::OnDraw method and add code similar to the following to its body:

    pDC -> TextOut(50, 50, "Put your message here.");
    pDC -> MoveTo(50, 60);
    pDC -> LineTo(100, 60);
    pDC -> Ellipse(220, 50, 320, 150);

  4. Build the project.

  5. Run the project.

  6. After deleting the Debug directory, zip the project, INCLUDING FOLDER INFORMATION, and submit it.