embedded resources in VS 2005

M

mnsindhu74

I am using Visual studio 2005. I want to embed few custom dialog boxes
as resources . In VS.Net the resources are stored in .resx files. In
VC++ we could use the resource editor to create and edit dialog
resources. But there is no editor to do the same in VS.Net. Can some
one help me with this issue

thanks
sindhu
 
L

Lloyd Dupont

When you say VS.NET you mean VS2003?
Anyway, work the same in VS2005!

If you want to create a dialgo box: new +> control: that's it!

--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
 
R

Richard Grimes

I am using Visual studio 2005. I want to embed few custom dialog boxes
as resources . In VS.Net the resources are stored in .resx files. In
VC++ we could use the resource editor to create and edit dialog
resources. But there is no editor to do the same in VS.Net. Can some
one help me with this issue

Further to what Lloyd said, you need to explain what language you are
using. Are you using unmanaged C++ in VS2005, or managed C++? (Or one
iof the other managed languages?)

Managed code uses .resx files for binary (.ico, .bmp, .cur etc) and
string resources, but it *does not* use them for dialogs. Windows Forms
dialogs are described *in code* (the InitializeComponent method) and VS
provides a form designer to edit it.

Unmanaged C++ uses .rc resource scripts for resources *including
dialogs* and you use the resource editor to change the script. There is
a dialog editor to change dialog resources.

Richard
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top