Re: Create a self contained CDialog, (no .rc/resource.h files)
I would recommend publishing your dialog as a dll or static library. That
way everything is in one place, code and resource. This way there would be
no need to worry about anything other than including a header file and
linking with your library.
AliR.
"Simon" <bad@example.com> wrote in message
news:eTBfFs9HKHA.5956@TK2MSFTNGP03.phx.gbl...
Hi,
I want to make a very simple CDialog derived class, and I want to make it
available on the internet for others to use/contribute.
But releasing an .rc file and resource.h is not practical, (users will
need to merge and so on), this will distract what the dialog is actually
used for.
I could just create a control, but this is not really what this is for,
(the dialog has buttons, progress bars and so on).
Is there a way of including/creating the dialog box without having to pass
a resource template?
Or, how can I include my own resource template outside the .rc file?
Thanks in advance
Simon