Open file on network in LotusScript?

Hi,

in LotusScript, i want to open a file wich is on the network.

I’m gona use the Open statement. But i don’t know how can i do that ?

For example, opening a local file :

Open “c:\123w\work\thenames.txt” For Input As fileNum%

But for a network one ? I tried replacing the "c:" by the network machine but it doesn’t work.

Thx for the help.

Subject: Open file on network in LotusScript ?

The problem is about access rights. The Domino server usually runs as a service under the SYSTEM account. The local system account, however, does not have the right to access that share.

Subject: Open file on network in LotusScript ?

Dim result As VariantDim filename As Variant

filename = “C:\abc.vbs”

result = Shell("C:\WINNT\system32\wscript.exe " & filename)

regards Bernhard