I try to use GetExcelRange function and works with file excel on my pc but not work in lan.
this works:
- Code: Select all Expand view
- cPath = "c:\myfolder\"
cFile = "myfile.xls"
GetExcelRange(cPath+cFile, , , @lOpened )
I have a folder in another pc in my lan and that folder has linked on my pc with S: unit, if I try this:
- Code: Select all Expand view
- cPath = "S:\"
cFile = "myfile.xls"
GetExcelRange(cPath+cFile, , , @lOpened )
that not works.
I have full access to folder linked to S: unit (read and write)
any help?