I am new to developing in VB Windows Forms, I am use to Visual Web Developer Asp.net sites. I am trying to figure out how I can publish or deploy my application to another computer without the other PC's downloading and installing Sql Server Express. What happened was when I ran the setup from the publish on the other PC, it automatically started to download the Sql Server Express since a database is connected to the application.
I Only want the Sql Server to be Installed on My computer, not the others, and for the others to Remote into the database file i guess that is on my computer so that it all gets stored on 1 local PC and so that I don't have to download Sql Server on every PC that I install the program on.
My Sql Server Database File is currently just stored in the main application folder as all of my code files are stored in and my app.Config connection string looks like this..
<add name="Dispatch.My.MySettings.DispatchConnectionString1"
connectionString="Data Source=OFFICE-ADMIN-PC;Initial Catalog=DispatchDB; User id=Office-Admin; Integrated Security=True;" providerName="System.Data.SqlClient"/>
I'm not sure if I need to change something in the app.config file or what to do.