Hello;
I have created a windows forms application using Visual C# and ms acces 2007. The connection string to the database from the application looks like this.
<connectionStrings>
<add name="CRMS.Properties.Settings.CRMSConnectionString" connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\CRMS.accdb"
providerName="System.Data.OleDb" />
</connectionStrings>
I have devloped both the database and windows forms development on a single pc.
I need to deploy this application on LAN with 8 pc's. The database will reside on the central pc with ip address 192.168.1.10. The windowsforms application will be installed on all the pcs including the pc on which the database file resides on. What are the steps i need to complete for a smooth and efficient deployment?