Forum Moderators: open
Once a user is finished working offline, I need a way for them to send the MDB file to me and have it upload all the data into the master DB. My vision is to have a "one-click" solution for the user and have the MDB file sent to my server somehow, and when received, let the process begin.
Does anyone know of a method for this, or will I have to hire a "real" programmer?
Thanks.
This would probably involve installing Microsoft Office on your server; and could then be done in a single .ASP script.
If it is just inserts, they could be recorded in a text file and uploaded, a server side script could then read the text file and create and execute the insert statements.
which then after checking becomes the master.
Yes exactly. That's the issue I have now with people uploading data to the database. I don't allow it, period. If they have a file to upload, they send it to me and I validate it, add the special codes and then upload it.
They can download to their hearts content.
So for this project, the same issue comes up. Somehow I need to make it seamless for them.
Here's the pseudo-idea:
1) person clicks on "check-out files" which first populates an MDB file then downloads it to their computer. That user code gets makred as "locked" in the masterDB so no other user can modify entries while stuff is checked out.
2) The user then launches their "offline" version of the program and does what they want to.
3) The user clicks "Check-in files" and that MDB file gets sent to the office, is compared with the master file, changes to the master are made, and the lock is removed.
I think I might be able to get the file automatically from their HD since I'll be installing it. Yep, I need some quiet time to figure it out.