CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 1999
    Location
    Western Cape, South Africa
    Posts
    10

    Creating a Window

    Hi,

    I have created a SDI form view MFC App, And I want to create an New Edit View Window. How would I go about this. Do I have to register a new window class, or is their an easier way using MFC.
    I don't want to use a dialog class. EG.
    On the menu, u click on View->logs and a notepad like program pops up. The window must be created by the app.
    Thanx
    Tyrone


  2. #2

    Re: Creating a Window

    Checkout the CWnd::PreCreateWindow, overriding it and making the class name to be that of the edit box might be of help.

    Good luck,
    Victor.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured