L
lallen
I have a template that allows users to print business cards. It displays a
form where they enter their name and three other lines of text. I would like
to increase the font size of the first character in each word if the user
enters the text in upper case.
The code I'm using to capture the text from the form is:
With ActiveDocument
For intLoop1 = 1 To 10
.Bookmarks("Name" & Right("0" & intLoop1, 2)).Range.InsertBefore txtName
.Bookmarks("Title" & Right("0" & intLoop1, 2) & "a").Range.InsertBefore
xtTitleA
.Bookmarks("Title" & Right("0" & intLoop1, 2) & "b").Range.InsertBefore
txtTitleB
.Bookmarks("Title" & Right("0" & intLoop1, 2) & "c").Range.InsertBefore
txtTitleC
Next intLoop1
End With
How do I go about changing the font size of selective characters in each
string?
Thanks for any help you can provide. ...Larry
form where they enter their name and three other lines of text. I would like
to increase the font size of the first character in each word if the user
enters the text in upper case.
The code I'm using to capture the text from the form is:
With ActiveDocument
For intLoop1 = 1 To 10
.Bookmarks("Name" & Right("0" & intLoop1, 2)).Range.InsertBefore txtName
.Bookmarks("Title" & Right("0" & intLoop1, 2) & "a").Range.InsertBefore
xtTitleA
.Bookmarks("Title" & Right("0" & intLoop1, 2) & "b").Range.InsertBefore
txtTitleB
.Bookmarks("Title" & Right("0" & intLoop1, 2) & "c").Range.InsertBefore
txtTitleC
Next intLoop1
End With
How do I go about changing the font size of selective characters in each
string?
Thanks for any help you can provide. ...Larry