1 2 3 4 5 6 |
Public Function AddPathSeparator(ByVal path As String) If Right(path, 1) <> ChrW(92) Then path = path & ChrW(92) End If AddPathSeparator = path End Function |
1 2 3 4 5 6 |
Public Function AddPathSeparator(ByVal path As String) If Right(path, 1) <> ChrW(92) Then path = path & ChrW(92) End If AddPathSeparator = path End Function |