big text, small text

O

Osiris

How would I put a BIG text item and a small text item together in a
cell of a table ?
I tried this:

With .Range
.Font.Size = 16
.Text = "tues"

End With
With .Range
.Font.Size = 8
.InsertAfter = "day"

End With

but that just makes "tuesday" 8 points text.
 
J

Jean-Guy Marcil

Osiris was telling us:
Osiris nous racontait que :
How would I put a BIG text item and a small text item together in a
cell of a table ?
I tried this:

With .Range
.Font.Size = 16
.Text = "tues"

End With
With .Range
.Font.Size = 8
.InsertAfter = "day"

End With

but that just makes "tuesday" 8 points text.

Already answered in the vba.beginner group.

Please do not multi-post as it wastes everybody's time.

--

Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
[email protected]
Word MVP site: http://www.word.mvps.org
 
Top