Maybe you use some of common controls and forget to call
InitCommonControlsEx() ?
Quote:> I'm adding multiple language support to an existing
> application. I a using multiple DLLs, one for each
> target language. Only one of the many dialogs in the
> file will not load. My callback proc gets three
> messages: WM_SETFONT, WM_DESTROY and WM_NCDESTROY. In
> the application in it's original state, the message
> sequence is WM_SETFONT, WM_INITDIALOG, and then a host of
> other messages.
> Anyone know what this sequence of messages means? I
> willing to believe that it some sort of ownership /
> permissions problem.
> Thanks, Dan