running embeded file

  • Thread starter Thread starter feudalac!
  • Start date Start date
F

feudalac!

Is it possible to embed an exe into my app and then during runtime, run
that exe?



thanks




--
You're not paid to think. A mindless worker is a happy worker. Shut up
and do your job!
- Tata Feudalac!

Certified Social Engineering Specialist (Because there is no patch for
human stupidity)
 
Vadym said:
Hello, feudalac!!

f> Is it possible to embed an exe into my app and then during runtime,
f> run
f> that exe?

yes, it is possible.

other exe can be embedded into into your exe's resources. When running your app
get that exe from resources copies and launches via Process.Start(...) method.

Have a look at ( http://msdn2.microsoft.com/en-us/library/7k989cfy.aspx )
to see how to deal with resources.

thanks


--
You're not paid to think. A mindless worker is a happy worker. Shut up
and do your job!
- Tata Feudalac!

Certified Social Engineering Specialist (Because there is no patch for
human stupidity)
 
Back
Top