C
CES
All,
I've run into a problem with a Field that I am passing a string value to via a module. I have a very specific case structure that I would like to preserve. Basically, the first letter of the First Name is capitalized First letter of the Middle Name is capitalized, and if Last Name is proper case.
IE: BTJohns, CESmith etc.
The problem that I am running into is that VBScript will sometimes convert the string that is returned from the function into what would be the equivalent of StrConv("XXX", vbProperCase):
So that the functions returned value "BTJohns" is converted into "Btjohns" and "CESmith" is converted into "Cesmith".
There seems to be no rhyme or reason as to when VBScript will impose this format change.
Any suggestions on this would be greatly appreciated. Thanks in advance. - CES
I've run into a problem with a Field that I am passing a string value to via a module. I have a very specific case structure that I would like to preserve. Basically, the first letter of the First Name is capitalized First letter of the Middle Name is capitalized, and if Last Name is proper case.
IE: BTJohns, CESmith etc.
The problem that I am running into is that VBScript will sometimes convert the string that is returned from the function into what would be the equivalent of StrConv("XXX", vbProperCase):
So that the functions returned value "BTJohns" is converted into "Btjohns" and "CESmith" is converted into "Cesmith".
There seems to be no rhyme or reason as to when VBScript will impose this format change.
Any suggestions on this would be greatly appreciated. Thanks in advance. - CES