I'm using .NET 2002. Is the ResXResourceReader available in C++? MSDN says
yes (by showing C++ function prototypes) however C++ fails to find the
class.
Yes, I have the using statement like:
using namespace System::Resources;
Maybe .NET 2003 has it? Can anyone confirm or deny this?
Dave,
> I'm using .NET 2002. Is the ResXResourceReader available in C++? MSDN says
> yes (by showing C++ function prototypes) however C++ fails to find the
[quoted text clipped - 3 lines]
>
> using namespace System::Resources;
Make sure you're #using System.Windows.Forms.dll or have an /FU for it.

Signature
Tomas Restrepo
tomasr@mvps.org
Dave L - 05 May 2004 19:17 GMT
Yes, this worked fine. Thanks.
#using <System.Windows.Forms.dll>
Dave
> Dave,
>
[quoted text clipped - 7 lines]
>
> Make sure you're #using System.Windows.Forms.dll or have an /FU for it.