Question start exe in resources?

majk.

New member
Joined
Mar 2, 2014
Messages
1
Programming Experience
Beginner
Hello vbdotnetforums.com

Im new at this forum and beginers skills on VS.NET i have one question.

I have transported some files to the resoruces on VS.Net and my question is how do i start them now...

I wanted to start the 3 EXE by clicking the buttons

be1978dad0604adc9b0e56cc5a9531f6.png


113ed87271caafc52e9f8e52e5fd8a2e.png
 
You don't because they're not files. The whole point of resources is that they are compiled into the binary contents of your EXE, so they cannot be deleted or changed from outside. Usually you use resources for strings, images, etc. If you want a file then you should distribute a file with your EXE. You could extract the resource data and save it as a file and then run that file but current Windows versions will view that as suspect behaviour because it could be used to hide and run a malicious program.
 
Back
Top