开发者

Need VB.NET Resource Files clarification

开发者 https://www.devze.com 2023-03-27 08:18 出处:网络
In a VB project I can add a resource via the project properties resources tab, or I can right-click the project in the solution explorer, click add, then click add existing item.

In a VB project I can add a resource via the project properties resources tab, or I can right-click the project in the solution explorer, click add, then click add existing item.

What are the differences?

If I want 开发者_JS百科to add a DLL file and include it as an embedded resource, do I have to add the file via both methods? Only one?

Thanks.


What you are describing is linked and embedded resources.

Check out this page which describes the differences:

Linked vs. Embedded Resources

From the MSDN link above:

Embedded Resources

Embedded resources are the best choice if you need to share application resource (.resx) files between multiple projects.

For example, if you have a common resource file that contains your company's logos, trademark information, and such, using embedded resources means you only have to copy the .resx file and not the associated resource data files.

You cannot edit embedded resources directly. If you try to edit an embedded resource, you will receive a message prompting you to convert the item to a linked resource in order to edit it; conversion is recommended but optional. You must export them, make your modifications in an external program, and then import them back into your project.

Linked Resources

Linked resources (the default) are the best choice for ease of use.

Resources can be edited directly inside the project, and you can easily add or remove resources as needed.


Edit

You would only need to add your DLL using one method. Which one you select depends on which method best fits your needs (as per the descriptions above)

0

精彩评论

暂无评论...
验证码 换一张
取 消