You can map between the two by using the Scripting object model. You'll need to add a reference to it: Tools -> References... -> Microsoft Scrpting Runtime (C:\WINDOWS\system32\scrrun.dll) or use late binding as discussed in another post today.
Code:
Sub test()
Dim scrFSO As Scripting.FileSystemObject
Dim scrDrive As Scripting.Drive
Set scrFSO = New Scripting.FileSystemObject
Set scrDrive = scrFSO.GetDrive("V")
MsgBox scrDrive.ShareName
End Sub
let us know if you're still struggling.
Maccas