let’s say i did add some exe file to the project’s resources.
now if i want to run that file, i have to extract it from the resources as a new file and then i can run it
So please can someone help me with how to do it
let’s say i did add some exe file to the project’s resources. now if
Share
Getting a resource as a stream from an assembly:
Copying the stream to a file: already described here:
(example is in C#, porting to VB.NET should be easy).
Running the file: use System.Diagnostics.Process.Start: