Anon
Anon

Reputation: 1354

adding an image to .dll

Im writing a DLL that is supposed to store resources for my program. How can i add a simple .bmp image to a .dll in Visual Studio 2010? I I've been searching for a while but couldn't find any useful documentation. Thank you.

Upvotes: 0

Views: 3092

Answers (2)

Bukes
Bukes

Reputation: 3718

Create a resource script. This link provides step-by-step instructions for creating a resource script, as well as adding resources like bitmaps and strings.

Upvotes: 1

Maxim
Maxim

Reputation: 7348

Add it as a resource to your assembly.

Upvotes: 1

Related Questions