J
Jimmy G
I recently got this function from this Newsgroup: Public
Function GetFileNameFromFullPath(fullPath As String) As
String
GetFileNameFromFullPath = Right(fullPath, Len(fullPath) -
InStrRev(fullPath,
"\", , vbTextCompare))
End Function
I put the code into the form How do I get the resulting
fileName to show in my textfield?
Function GetFileNameFromFullPath(fullPath As String) As
String
GetFileNameFromFullPath = Right(fullPath, Len(fullPath) -
InStrRev(fullPath,
"\", , vbTextCompare))
End Function
I put the code into the form How do I get the resulting
fileName to show in my textfield?