How to create a simple execute application

  • Thread starter Thread starter S.Hoa
  • Start date Start date
S

S.Hoa

Hello
I have simple application with an Access database using VB.NET. I do not
know how to export them to create execute files to run to other computers. I
looked in Tool and Help but can not find out. Could you please help
Many thanks
S.Hoa
 
SHoa,

When you use Visual Studio net (or VBNet with the IDE) than your program is
everytime compiled when you use debug or start (although you can build that
as well without it). To release it you can set it in release mode and your
program will be in the map objects release.

However special for that is the deployment project function. The deployment
is great, a problem is alone that it uses the most strange places in the IDE
(menu items etc), it looks if it is a stephchild as in Cinderella for me and
therefore everything is hard to find.

http://msdn.microsoft.com/library/d.../vbtskCreatingInstallerForYourApplication.asp

I hope this helps?

Cor
 
Back
Top