Hi,
I am busy posting questions to this forum today! I've got one more, for now.
I use a strConv function to capitalize the first letter of each word in a text field on my form. It works fine, but I have one scenario where it changes an upper case to a lower case. The scenario is when I type in: "Towel Shelf/Bar Unit". It actually changes the 'B' in Bar to lower case, and ends up being "Towel Shelf/bar Unit". This is not a major deal but just drives me batty because it doesn't look right. Is there any way around it?
The VBA statement is:
Thanks in advance...
Lori
I am busy posting questions to this forum today! I've got one more, for now.
I use a strConv function to capitalize the first letter of each word in a text field on my form. It works fine, but I have one scenario where it changes an upper case to a lower case. The scenario is when I type in: "Towel Shelf/Bar Unit". It actually changes the 'B' in Bar to lower case, and ends up being "Towel Shelf/bar Unit". This is not a major deal but just drives me batty because it doesn't look right. Is there any way around it?
The VBA statement is:
Code:
ItemSubcatDesc = StrConv(ItemSubcatDesc, 3)
Thanks in advance...
Lori