wolfegirl04
New member
- Local time
- Yesterday, 18:31
- Joined
- Mar 19, 2004
- Messages
- 7
HELP With StrConv Function
I was wondering is there any way to get the first letter of every word or just the first word in a text fiels to be capitalized? like entered as: address 1500 blue dr and displayed as 1500 Blue Dr
a book that I have says
Format Setting @;"NO Data" will result in text entered as horse displayed as Horse. It does not work.
Another sugestion was to: use the StrConv() function in the After Update event of the control you want to have Proper Case. Search Access help for StrConv() and you will find the syntax you need there.
Should the code look like this:
StrConv(vbProperCase)
It does not work either.
I think I am missing a String: StrConv(string, conversion)
But I do not know wht the string is
Help
I was wondering is there any way to get the first letter of every word or just the first word in a text fiels to be capitalized? like entered as: address 1500 blue dr and displayed as 1500 Blue Dr
a book that I have says
Format Setting @;"NO Data" will result in text entered as horse displayed as Horse. It does not work.
Another sugestion was to: use the StrConv() function in the After Update event of the control you want to have Proper Case. Search Access help for StrConv() and you will find the syntax you need there.
Should the code look like this:
StrConv(vbProperCase)
It does not work either.
I think I am missing a String: StrConv(string, conversion)
But I do not know wht the string is
Help