Windows message handler
.NET (Core and Framework)
1
Posts
1
Posters
0
Views
1
Watching
-
In VC6 MFC allows you to add a function, variable, virtual function or Windows message handler (from the context menu for a class). In VC7 (or .NET) only the first two are available. Or am I missing something ? It really would be helpful if I could find a list of message handlers, for example. So if I want to add a splitter to a program, and need OnCreateClient, I can get it loaded into the .h and .cpp files automatically, and correctly typed: virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext); In VC7 it seems that I have to copy and paste (after object browsing). Is there a better way ? Raymond Mercier