|
Subject:
|
Reading information from remote PC on the network
|
|
Posted By:
|
Dmitriy
|
Post Date:
|
1/8/2004 9:43:29 AM
|
Hi everybody! Is any way to read an information from the Share from the remote computer on the network programmatically if you do not know the MAP letter on the remote PC, but you know the network computer name and Share name ? -Dmitriy
|
|
Reply By:
|
owain
|
Reply Date:
|
1/8/2004 9:48:54 AM
|
Yes, use \\ComputerName\ShareName\Filename, for example:
Open "\\ComputerName\ShareName\Filename.txt" For Input As #1
Or
Open "\\IPAddress\ShareName\Filename.txt" For Input As #1 And that is all there is to it!
Regards Owain Williams
|
|
Reply By:
|
Dmitriy
|
Reply Date:
|
1/8/2004 10:04:39 AM
|
Thanks Owain, I'll try. -Dmitriy
|