user3765415
user3765415

Reputation: 109

Make vb.net program accessible for multiple users and computers

Can someone tell me how to make my vb.net program accessible by multiple users from different computers at a time. My program has forms that will take input and save in MySQL. If multiple users from different computers fill forms it should be saved into mysql. I am using VS 2013.

Please give me an idea about how to make this.

Upvotes: 0

Views: 1351

Answers (1)

Mumin Asaad
Mumin Asaad

Reputation: 180

As an idea, you could make two programs , 1 called Server found on your personal PC and the other is called Client on every other user's PC, when client makes a change it calls a function on servers PC using .Net Remoting technology, and the server makes the appropriate changes to the MySQL.

So every change would affect one Database over WAN , and you can add event to each change that will invoke all users to update information.

hope to help :)

Upvotes: 2

Related Questions