Dear all, I'm trying to load a resource dialog box from a dll file. Which API should I use? LoadResource? But I can't find the name of the resource in the rc file of the dll file. Any hints will be appreciated and thanks in advance.
>I'm trying to load a resource dialog box from a dll file. >Which API should I use? The DialogBox API has a hInstance parameter which you use to specify the module (DLL) that contains the dialog resource. Dave
Thank you for your hint. Now I can see the dialogbox. "David Lowndes" wrote: > >I'm trying to load a resource dialog box from a dll file. > >Which API should I use? > > The DialogBox API has a hInstance parameter which you use to specify > the module (DLL) that contains the dialog resource. > > Dave >