-
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
-
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.