Send data from one computer to another
I am devloping a project with vb6.0 and access I have a data base file and i want to enter something in the data base from another computer.
this computers are in long distance and both are connected with internet.
now i want to enter some data in the computer from another by internet Is it possable?
Re: Send data from one computer to another
If all of your computers, regardless of their location, can connect and write to the same database file, I don't see why there would be a problem.
Re: Send data from one computer to another
Re: Send data from one computer to another
and you need to tweak (and have) IIS on the computer that you want to connect to. otherwise, you could use remote control software.
Re: Send data from one computer to another
Quote:
Originally Posted by rumy
I am devloping a project with vb6.0 and access I have a data base file and i want to enter something in the data base from another computer.
this computers are in long distance and both are connected with internet.
now i want to enter some data in the computer from another by internet Is it possable?
If you take a look
http://www.vbforums.com/showthread.php?t=319832
There are some links to starting off in winsock which is how you can send data from one pc to another :)
Pino
Re: Send data from one computer to another
But you still have to connect to the database.
Re: Send data from one computer to another
A Client-Server approach will do.
The client is the remote PC that's going to manipulate the data.
The server will be the PC with the database.
So the client app will connect to the server app. The server app will
manipulate the database based on client app's command.
But this is an indirect manipulation.
To connect to the database instead of using a client-server approach, you've
to setup the IIS for a database.