michaeljohannes
Registered User.
- Local time
- Today, 00:46
- Joined
- May 3, 2007
- Messages
- 67
Hello,
Can someone give me a hand with a file path to a computer on a basic network shared folder?
This is what I have so far:
If the file JOB_CHECKLIST.xltm was stored locally on my machine, the path would be "c:\comp_sharedfolder\" but because it's stored on a different machine, the path is something different. The computer name is called "CONF" and (for the sake of discussion) the folder is described above.
Any suggestions?
Thanks!
Mike
Can someone give me a hand with a file path to a computer on a basic network shared folder?
This is what I have so far:
Code:
Private Sub cmdGenCheckList_Click()
Dim objXLApp As Object
Dim objXLBook As Object
Set objXLApp = CreateObject("Excel.Application")
Set objXLBook = objXLApp.Workbooks.Open("\\comp_sharedfolder\JOB_CHECKLIST.xltm")
objXLApp.Application.Visible = True
objXLBook.ActiveSheet.Range("D3") = Me.JobOrderNumber
objXLBook.ActiveSheet.Range("D2") = Me.LastName
End Sub
If the file JOB_CHECKLIST.xltm was stored locally on my machine, the path would be "c:\comp_sharedfolder\" but because it's stored on a different machine, the path is something different. The computer name is called "CONF" and (for the sake of discussion) the folder is described above.
Any suggestions?
Thanks!
Mike
