I'm receiving feedback from a developer that "The only way visual basic (6) can deal with a UNC path is to map it to a drive." Is this accurate? And, if so, what's the underlying issue and are there any alternatives other than a mapped drive?
|
|
Here is one way that works.
|
||
|
|
|
|
We have a legacy VB6 app that uses UNC to build a connection string, so I know VB6 can do it. Often, you'll find permissions problems to be the culprit. |
||
|
|
|
|
I don't think this is True, if you are using the Oldschool VB had some language constructs for file handling. These are evil. Don't use them. |
||
|
|
|
|
What sort of file I/O are you doing? If it's text, look into using a FileSystemObject. |
||
|
|
|
|
Even the old school type of file handling does work:
|
||
|
|
|
|
I have observed VB6 UNC path issues when a combination of the items below exist:
Usually a 75 path file access error or 54. At times this may be related to API's such as getshortfilename and getshortpathname on the aforementioned UNC's. Other than that they work great... A mapped path will usually not have these issues but those darned drive mappings disconnect often and can change at anytime causing many support headaches. |
||
|
|
