As example:
Code: Select all
Function CompareTwoStrings(A, B)
A = LowerStr(A)
B = LowerStr(B)
If A = B then Return(True)
Return(False)
EndFunctionCode: Select all
Function CompareTwoStrings(Lowerstr(A), Lowerstr(B))
If A=B then Return(True)
Return(False)
EndFunctionAny Chance something like this could be done? Not that big a deal, but I think it would make the code slightly more readable, and faster to find stuff.