I need to process this message. Problem is, when I introduce the handler, the window never shows, and I must kill with ctl+alt+del. Even this hangs the window! :
case WM_NCREATE:
break;
I am still processing the WM_CREATE message, but even ommitting it doesn't change things.
Any ideas would be appreciated...



LinkBack URL
About LinkBacks




I am attempting to forever banish the WindowProcedure in favor of a more generic approach to handling events.
) this is exactly what I was doing (passing "this" as the last parameter of CreateWindowEx(), and then fetching it from the other side of the window procedure, ie:
- but thanks anyway!
)