View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Héctor Miguel Héctor Miguel is offline
external usenet poster
 
Posts: 434
Default how do i get my text to follow the autoshape?

hi (...), ?????

If I select the banner autoshape, how do I get the text to follow the curves of the banner when I add text to the shape?


how about embedding a WordArt object and use the '_change' event on that worksheet code module ? (i.e.)

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then
Me.Shapes("wordart 1").TextEffect.Text = [a1].Text
End If
End Sub

hth,
hector.