self executable

  • Thread starter Thread starter Frank Ashley
  • Start date Start date
F

Frank Ashley

Has anybody got any ideas on how to create a self executable in vb.net?

Thanks
Frank
 
What do you mean by "self executable" ? Do you mean a program that can
execute itself?

You can try Process.Start to execute any program.

Can you explain more?
 
Frank Ashley said:
Has anybody got any ideas on how to create a self executable in vb.net?

I am not sure what you mean with the term "self executable", but you cannot
use VB.NET to create an application which will run without the .NET
Framework.
 
I have one file aa.exe.. This exe contains my exe and supporting files, it
is a zip but with the exe extension. When the exe is double clicked it
unzips and starts my exe.

Zipping up files is no problem but how would I go about creating an exe that
unzips itself then starts/runs/loads one of the files it contains.

I hope this is clearer.


rgds
Frank
 
Frank Ashley said:
I have one file aa.exe.. This exe contains my exe and supporting files, it
is a zip but with the exe extension. When the exe is double clicked it
unzips and starts my exe.

Zipping up files is no problem but how would I go about creating an exe
that unzips itself then starts/runs/loads one of the files it contains.

You may want to take a look at Winzip's and WinRAR's website. Both of them
provide support for creating self-extracting archives.
 
I looked at those and they would probably suffice but it would be more
satisfying to write it in vb.net

rgds
Frank
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top