This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Function FixID(InID As String) As String | |
| If Len(InID) = 18 Then | |
| FixID = InID | |
| Exit Function | |
| End If | |
| Dim InChars As String, InI As Integer, InUpper As String | |
| Dim InCnt As Integer | |