sharing VB files, how to?

  • Thread starter Thread starter dchaney297
  • Start date Start date
D

dchaney297

Guest
Hello all,

I have a question that has bugged me for years, and as a new (to VB anyway) programmer I have to ask it. So please forgive me if it's been asked here before, or it's a stupid question

After I am finished coding my program, and I have something that I want to release and or just share, how do I make it so that I can share it?

My platform is VB.net

I understand that in previous version of VB there was a command to "Create an executable" but I can find no such thing in the .net enviroment.

Thanks all,

David
 
In VB.NET, every single time you debug or run the program, you
are compiling it to an EXE. If you look in the project's folder, it will
be in the subfolder Bin.

To correctly distribute a VB.NET application, you need to create a
new Setup Project or Setup Wizard and work from there.

Read the help files and check out these links for the specifics:

http://www.msdn.microsoft.com/nhp/default.asp?contentid=28001271&frame=true

http://www.msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid.asp?frame=true
 
Back
Top