Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Packaging VB.Net with the database inside

Status
Not open for further replies.

rushdib

Programmer
Jun 12, 2001
203
US
Hello,
How do I package a VB.Net application with a database inside?

Thanks in advance,

Rushdi
 
when you have the project you want to create an installation program for go to File --> Add Project --> New Project you will then get the new project dialogue box.

Select Setup and Deployment Projects from the Project Types: list on the left and then choose Setup Wizard from the Templates: list on the right.

The Setup Wizard will then pop up. Click Next.

If you are using a typical windows application choose Create a setup for a Windows Application option and click Next.

Then you will be given the chance to choose which output groups you want to include. The minimum is the Primary Output from [WindowsApplication] click it. Then click Next.

Next add any files you need for your project. This would include INI files, Read Me's, databases, etc. Once you have done this click Next and then Finish. This will create the minimum setup project needed to install it on another system.

You will need to add Start Menu and Desktop Short Cuts yourself
 
Hi,
Thank you for the response. I think it's my fault that I didn't put the question right. I wanted to package an application with the data inside the application. That means the users wouldn't have a database. The data has to reside inside the application one it's installed in their system.

Thanks,

Rushdi Basir
 
are you saying you want a single exe application?

if so, then you may be looking at the wrong language. Microsoft takes the view point of "The one with the most files, wins."

I may be wrong. If so, someone will let you know.

Kris
 
Hi,
Ya, I am looking at one .exe. First of all, I don't know whether this is possible.

Rushdi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top