i have a small vb.net web application that creates a word document. it does
this by binding a dataset to mergefields within the word doc.
my problem is that i cant seem to get the title case working. is there a
specific reason why it wouldnt format?
eg. i have a merge field called <<Name>> the value within the dataset is
craig gamble. i would expect the merge field with title case format to be
displayed as Craig Gamble
but this isnt working? any reason why?
Cheers,
Craig
When you press Alt+F9 to toggle the display of field codes, you should see:
{ MERGEFIELD Name \* Caps }
If that is what have, it should capitalize the first letter in each word.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
>i have a small vb.net web application that creates a word document. it does
> this by binding a dataset to mergefields within the word doc.
[quoted text clipped - 10 lines]
> Cheers,
> Craig
Graham Mayor - 18 Feb 2006 07:47 GMT
If the data source is entered in upper case, you will probably need to set
it to lower case first
{ MERGEFIELD Name \* Lower \* Caps }

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> When you press Alt+F9 to toggle the display of field codes, you
> should see:
[quoted text clipped - 17 lines]
>> Cheers,
>> Craig