Separate resource for standalone class

  • Thread starter Thread starter Mihajlo Cvetanovic
  • Start date Start date
M

Mihajlo Cvetanovic

I have a class that uses a string table and some dialogs, but should
be reusable, ready for localization, and should not be for MFC-only
applications. How do I do that without making separate dlls?
 
I said:
I have a class that uses a string table and some dialogs, but should be
reusable, ready for localization, and should not be for MFC-only
applications. How do I do that without making separate dlls?

Is the question too easy, or just impossible? Anyway, it seems that
there may exist more then one resource file (.rc), but the linker is
complaining about it, so I was wondering whether separate rc is the
good idea for what I need?
 
I have a class that uses a string table and some dialogs, but should be
Is the question too easy, or just impossible?

You eliminated the cleanest way of achieving your desired goal -
making a separate DLL.

Dave
 
David said:
You eliminated the cleanest way of achieving your desired goal -
making a separate DLL.

Recently discovered technical note TN035 is pretty much what I had in
mind. I think I'll go from there...
 
Back
Top