Resources Question

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi,

Could anyone tell me how the VS.NET IDE to specify the resource files to be
embedded with assembly?

I only know how to do it with command line vbc /resource: resource files

Thanks!

John
 
Hi John,

Try to make a deployment project, that makes (with your help) a complete
setup msi for you.

I hope this helps?

Cor
 
John said:
Could anyone tell me how the VS.NET IDE to specify the resource files
to be embedded with assembly?

I only know how to do it with command line vbc /resource: resource
files

Add the resource file to the project. Use the menu or context menu. In
the property window, set "build action" = embedded resource.
 
Hello, John:

In addition to Cor and Armin:
You can also use one (or more) .resx file with the ResXFileRef class. In fact, this is the best option if your application supports internacionalization.
See how to do at http://msdn.microsoft.com/library/d...ResourcesResXFileRefClassTopic.asp?frame=true (note that the IDE will compile it for you, you don't have to use ResGen.exe).

Regards.


"John" <[email protected]> escribió en el mensaje | Hi,
|
| Could anyone tell me how the VS.NET IDE to specify the resource files to be
| embedded with assembly?
|
| I only know how to do it with command line vbc /resource: resource files
|
| Thanks!
|
| John
|
|
 
Back
Top