Opening a file in a network folder is no different from opening a local file.
Code:
Dim wb As Workbook
Set wb = Workbooks.Open("\\computername\foldername\filename.xls")
wb.Close
or if you're opening the file as text,
Code:
Open "\\computername\foldername\filename.xls" For Input As #1
|
Last edited by herilane; 03-02-2006 at 02:32 PM.
|