View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
DM Unseen DM Unseen is offline
external usenet poster
 
Posts: 233
Default Editing text in text box grouped within a trapezoid

to get to an shape of a group use:

say you have a "group 4"(or whatever you call it), and that contains a
"textbox 3" which needs anew value of 333.

Activesheet.Shapes("Group 4").GroupItems("TextBox
3").ControlFormat.Value = 333

DM Unseen