How can I generate an .exe with all the resources internally? (Visual Basic)

0

I have a project that I'm doing in visual studio, with vb.net, the detail is that I use files like images, audios or executable exemptions in .exe that I call by Process.

My question is how can I put all of that internally in the .exe, regardless of the size of the resulting .exe file? Is it possible?

    
asked by Fabrizio Piminchumo 02.12.2017 в 18:01
source

1 answer

1

Yes, it is possible. If you open the project properties window (right click on the project in the Solution Explorer and select the option "Properties ...") you will see that in the menu on the left you have the option "Resources", this option allows you to add to the executable different resources such as texts, images or any type of file:

Here you have more detailed information on how to do it:

How to embed and access resources using Visual Basic .NET or Visual Basic 2005

    
answered by 02.12.2017 / 18:32
source