I have designed an Application tracking details and I have deployed it. The records are updating the way I need. I want the same application to be used in other three different systems which do not have MS Visual Studio. How can I do it ? Is it enough that I create a similar table in the path I have designed in the other systems and run the Application ?
|
|
The probably easiest way to deploy your project would be:
You can also create a Setup and Deployment Project
(More details about adding files to your setup project: How to: Add Items to a Deployment Project) If you want to use a copy of the access database on each machine Now in the same manner as before rightclick on "Application Folder" and add project output. Only this time select "Content Files" instead of "Primary Output"
If you want to access the same database from each machine Change your connectionstring, so that users from other machines are able to connect have a look at this site if you need help with connectionstrings. As you won't be able to connect to the database with the absolute filepath from other machines, create a fileshare where everyone who should be able to connect has permissions to read/write.
Hope this helps so far. |
|||
|
|