Reputation: 2352
I'm dealing with win32 api subclass. My issue is I don't know my subclass procedure is running on a dialog or a "normal window". Can anyone tell me how can I determine current window is a dialog or a normal window?
Upvotes: 4
Views: 2233
Reputation: 10557
Check the name of the window class. There is no formal documented way of determining this other than that.
Upvotes: 11