Question

I have an old Access database (.mdb/2003) that was used as application for the sales representatives team.

Problem:

My task is now to write a WinForms application that every sales representative will in future have on his laptop. All data that each of them are collecting must then be updated afterwards to a central db in the company. The Access database must be migrated to SQL Server.

I was first thinking of a web application, but this option is not allowed or otherwise possible.

Is there a way that each sales representative stores his data on a local db on his laptop, and then sends his db via E-Mail, In the end the data of all sales representatives must be merged together into the central database. Any idea, that follows this concept -> store data locally and send it via E-Mail, to fill the central database?

Regards and thank you for any help in advance!

Was it helpful?

Solution

it's not such a big deal to write a c# application to store data in xml format, maybe zip and encrypt it, attach it to an email and then send it to a specific address (for example using .net SmptClient class).

the bigger task will be to write a service on server side to wait for incoming emails and write attached data to sql server ...

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top