T
TRM
I have records which are tracking the version of a document using the
alphabet for the version number. Originally the request was for the version
to go up to "G", but they have now found they would like the version to be
"endless". So, I'm trying to figure out how to go from "A" to "B" (and "AA"
to "BB" - etc.) withough using 2 or 3 (see below) hardcoded lines per
letter/round.
I am currently testing the idea of "A" thru "A9" for each letter (with
'minimal' ?? coding), but I'm not sure yet if the customer will be satisfied
with that option.
Here is a snippet of what I currently have in use:
' Case "A"
' strVer = "B"
' Case "B"
' strVer = "C"
' Case "C"
' strVer = "D"
' Case "D"
' strVer = "E"
' Case "E"
' strVer = "F"
' Case "F"
' strVer = "G"
' End Select
alphabet for the version number. Originally the request was for the version
to go up to "G", but they have now found they would like the version to be
"endless". So, I'm trying to figure out how to go from "A" to "B" (and "AA"
to "BB" - etc.) withough using 2 or 3 (see below) hardcoded lines per
letter/round.
I am currently testing the idea of "A" thru "A9" for each letter (with
'minimal' ?? coding), but I'm not sure yet if the customer will be satisfied
with that option.
Here is a snippet of what I currently have in use:
' Case "A"
' strVer = "B"
' Case "B"
' strVer = "C"
' Case "C"
' strVer = "D"
' Case "D"
' strVer = "E"
' Case "E"
' strVer = "F"
' Case "F"
' strVer = "G"
' End Select