Initial capitalization

  • Thread starter Thread starter Bill H.
  • Start date Start date
B

Bill H.

Is there some code floating around that can take a street address as input,
and output the same but with all the words Initial Caps?

I've got a database of addresses and some folks are failing on the SHIFT key
function. :-)

Thanks.
 
Is there some code floating around that can take a street address as input,
and output the same but with all the words Initial Caps?

I've got a database of addresses and some folks are failing on the SHIFT key
function. :-)

Thanks.

Codt the Address control's AfterUpdate event:
Me![Address] = StrConv([Address],3)

Note: this will incorrectly capitalize words that should have more
than one capital letter, i.e. MacDonald Street, as well as incorrectly
capitalize words that should not be capitalized, i.e. van Houten
Street.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top