Include Database In Installation / Deployment Project?

Apr 20, 2009

My company has an application that until now has been distributed as exe-file together with lots of dlls. I am about to make an installtion program for this application, but there is one big problem. The database can be both access and SQL, the user decides by what he/she writes in the connection string in the .config file. I know how to insert a custom action in the installtion program to enable to let the user chosse this during installtion, but I don't know how to include the database in the project, especially since it can be both access and SQL.

View 3 Replies


ADVERTISEMENT

Include An Excel-file In The Project Installation?

Feb 18, 2011

I have an excel-file that is being populated with certain information and is used as a base for a printing form...

I need to include that file in the installation and reference to it when populating the cells with some information. So, how do I include that file when installing the project?

( I tried already to change the 'Build Action' to 'Content' )

View 2 Replies

Create Event Log Source As Part Of Installation - Windows Forms App, Vs Deployment Project

Mar 27, 2011

I have a vb.net windows form app that I am deploying as using the visual studio deployment project. The app needs to write event logs to the application log in the event viewer. For reasons explained here I need to create the event source during the installation process. Something like this to run as part of the installer

If Not EventLog.SourceExists(My.Application.Info.ProductName) Then
EventLog.CreateEventSource(My.Application.Info.ProductName, "Application")
End If

That code needs to be run during the installer with elevated privileges. So my questions are:

How do I execute that code above as part of the installer? How do I get the installer to do the UAC prompt to allow that code to run as part of the installation?

View 1 Replies

Installation Include 2007 MS Access Database Engine?

Dec 16, 2011

It used to be that the VB6 installation tool automatically recognizes a MS Access dependency and includes the appropriate DLL(s). In VB.Net (2008) I am struggling with the concept of having to have two different installations, one for my tool and one for the 2007 MS Access Database Engine... Can you tell me if there is at least a way of manually including the appropriate Database Engine Files in my application installation?

View 6 Replies

Include Database In The Deployment Package?

Oct 8, 2008

I was just forced to switch from VB 6 to .Net. I have my program working but I can't figure out how to include the database that I'm writing to in the install package. I can get the program working by dropping it in but I have to deploy this to other locations and I'd like it to be easy for them.

View 39 Replies

Include Contact Project Into Another Project / Add More Items To Database / Forms In New Project?

May 6, 2009

I have a project that I have created, it something like a contact database.It is complete with its own sql server database, and controls and forms.I kinda of understand that I can include this project into another project.This is the tricky part,Can I include my contact project into another project and add more items to the database and forms in a new project?What I'm after is like using classes.My contact database would be like the base class, and the new project would be adding more features to that project.

View 10 Replies

Deployment :: Combine WAMP And Application Installation Into One Packet Installation?

May 24, 2009

I just made an application using MySQL for the database. I use WAMP.Can I combine WAMP and my application installation into one packet installation ?

View 2 Replies

Include The Database In The Project?

Jun 11, 2011

I have built a movie database, and a search and insert etc queries, now when the program asked if I want to move the database to the project dir, I accepted. - but now that I'm finished, I compiled it, and tried it on another comp but it doesn't let me install, due to not having the database, is there a way to go round this? how can I include the database in my project?

View 6 Replies

Include A Database In Your Finished Project?

Feb 2, 2010

I built a program in visual studio 2005 that access a Microsoft Access database. I need this program to be a standalone program on many machines. To do this, I need to install a copy of the database when the program installs. I tried including it in the application files part of the build, but the problem I am having is the connection strings dont update with the install. It still tries to point to the folder it is in on the comnputer i built the program.

View 11 Replies

Create The Project Setup And Include The Database Itself?

Jun 5, 2011

How can i create the project setup and include the database itself..

View 7 Replies

How To Include WAV File In Installation

Aug 15, 2009

I have a call to the mediaPlayer in my project (to play a wav file). While publishing the project, vb.net does not include this wav file to the applications file and while intalling this wav file is missing. Hence I need to copy it manually. How can I make vb.net include this wav file in the installation?

View 13 Replies

Include For The Installation Of Program?

Jul 12, 2010

what Files do I need to include for the installation of my program-do I need to include all the files in the debug folder? or do i only need the EXE?

View 5 Replies

Include Files Jpegs In The Installation?

Apr 8, 2010

when i am building the installation file i need to be including some jpegs and i need them to be saved to a specific location how do i include jpegs in the installation? how do i have them be extracted to specific directories?

View 1 Replies

Windows Installer Monitor - Include A Tool With Installation

Oct 6, 2009

I created a windows installer installation for my vb.net application. I want to include a tool with my installation that will run before the install begins and monitor the installation and send the log and errors to me (by email for example)

View 1 Replies

Include Another Program In Deployment?

May 2, 2009

I have a project ready to be deployed via ClickOnce and it uses free graphing software. Is there a way to either include this software so that it will be installed with my project or have the install from the graphing software run when my program is installed from the site?

View 2 Replies

C# - ClickOnce Deployment And Installation Path On PC?

Jul 8, 2011

I have a application that I deployed to web server. Users go to "publish.htm" deployment web page to install my vb.net application. Where is the application installed? I don't think it is installed under "Program Files" like others.

View 2 Replies

Deployment :: Installation With ICON On Vista?

Sep 11, 2009

I have a problem with installation in Vista. I have complied my vb.net 2.0 application using innosetup last month and installed it successful but after that i changed icon in my application and complied again. On windows vista machine i tried uninstall old version and installed new version. But the desktop and startmenu shows old icon. Does it mean uninstall did not removed the old icon ? It works fine with windows xp.

View 3 Replies

Deployment :: Set The Installation Path Of My Program To C:Foldername

Apr 14, 2009

Is there a way to set the installation path of my program to c:Foldername.

question number 2 is that I have 2 database files which is located in m� program, is there a way to copy these to a spesific location during the installation of the program?

View 1 Replies

Select The Installation Directory Using Click Once Deployment?

Jul 20, 2009

I have developed a WinForm app using vb.net. The app needs to send an email notification to users containg the id of an item that needs thier attention. The email needs to contain the link and commandline parameters so that the user can clik on the link and the app will open the correct form, with the item to be updated, already loaded. Click Once installs the app under the users directory ("Documents nd setting\%USERNAME%Start MenuPrograms\%AppName%..."), so, the email has to contain the user name as part of the path.

- How can click once be configured so that the instalation is in the program files directory to avoid having to add the username as path of the path?
- how do send a link which contains a parameter that directs the app to load a speciified form (not the startup form)?

View 4 Replies

Setup & Deployment - Create An Installation File?

Oct 28, 2009

how to create an Installation file in VB.Net. I create via Setup Project in Setup & Deployment . But how i add Shortcuts , Licence agreement, Serial no and Welcome notes.

View 2 Replies

Deployment :: Setup And Deployment Project With Ms Sql Server?

Nov 3, 2009

i'm developing an application vb.net with mssql server as database. on my pc it works. but i don't know how to make it works on my customer's pc.anybody have some tutorial regarding the creation of a setup and deployment project with ms sql server.my first doubt is: how can i determinate the right connection string?

View 1 Replies

C# - Visual Studio Setup And Deployment Installation Folder

Nov 26, 2010

The 'DefaultLocation' for my application is set to '[ProgramFilesFolder]MyApp'. Now I would like the user to select what drive to install this application to. I know this is accomplished through the 'Installation Folder Selection' dialog, but I want the user to be able to select a drive only, not the entire path.

My question is how do I capture what drive the user selected from the 'Installation Folder Selection' dialog and use that drive letter to tack on to my 'DefaultLocation' variable?

[Code]...

View 2 Replies

VS 2008 Deployment Installer - Change Default Installation Path?

May 4, 2011

I need help changing the default installation directory for a deployment package installer. The application's default directory is currently: [ProgramFiles][Manufacturer][ProductName].

What would I change this to, so that I can install the software directly on the root drive; Such as 'C:ManufacturerProductName'?

View 3 Replies

Include Runtime Modules For Access, Crystal Reports, And .net 4.0 In Setup Deployment?

Jun 15, 2011

I have an application written in VB.net using VS2010 that I am ready to deploy. The application uses an access (2003) database, the .net 4.0 framework and Crystal Reports. I have generated a setup project which works fine when deploying to systemsthat have the runtime for CR and Access and .net 4.0, but I will need to deploy this to systems that do not contain all of thes "pre-requisites", and may not have a

View 10 Replies

Deployment :: Remove [ProgramFilesFolder] From The Setup Program, The Installation Doesn't Work?

Jun 10, 2009

The default installation of my setup project is as follows:

[ProgramFilesFolder][Manufacturer][ProductName]

The problem is PC in Europe don't have a "Program Files" folder, it's in a different language.When I remove [ProgramFilesFolder] from the setup program, the installation doesn't work. I would like to install the application in C:AppFolder,

View 1 Replies

Deployment :: Setup & Deployment - Copy/import 2 Folders And There Sub-files/folders Into S&d Project?

May 7, 2012

Have built a project and associated it with a Setup&Deployment Project. The S&D project needs to contain 2 main folders (under User's Desktop) with various formats of files (xmls, txts, dlls) inside them and several subfolders. How can i copy/import these 2 folders and there sub-files/folders into my s&d project?

When adding them in the usual way, they are copied and defined a source path onto the current pc. You can understand what errors this might create when an another targeted pc does not contain those files to the exact location. Is there any way to copy them locally or somehow import them?

View 5 Replies

Installation Of A Vb Project?

May 13, 2009

i've just completed a vb application and i 'm asked to write installation notes + system requirments to install and the requirments needed to run this application.

View 1 Replies

Deployment :: ClickOnce Publish: Publishing Folder Vs Installation Folder?

Oct 28, 2009

I have a question regarding publishing vis ClickOnce. For the publish options, there is a Publishing Folder Location and there is a Installation Folder URL. clarify the difference between Publish and Install, and when it would be apropriate for the two to be different?

View 3 Replies

How To Include .cs File Into .net Project

Aug 10, 2011

im using vb.net 2008 not vs, i try to include a cs file but there a no include in project explorer, so i use add existing item.but this cs file should generate a component in toolbar, but it wont, is there any other way to load it to my vb.net project?

code in *.cs file
using System;
using System.Text;
using System.Drawing;
using System.Drawing.Text;
using System.Drawing.Drawing2D;

[Code]...

View 6 Replies

Location Of ClickOnce Installation And What Are The Restrictions Of ClickOnce Deployment?

Apr 11, 2009

Where is the location of ClickOnce Installation and what are the restrictions of ClickOnce Deployment?

remember to mark the replies as answers if they help and unmark them if they provide no help.

Welcome to the All-In-One Code Framework! If you have any feedback,

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved