vb for no color or transparent

  • Thread starter Thread starter Preschool Mike
  • Start date Start date
P

Preschool Mike

I have a textbox with a fill color of white. How do I change it back to
transparent/no fill using vba? Using ppt 2007.

ActivePresentation.Slides(2).Shapes("MainChar").Fill.ForeColor.RGB = ?
 
Hi,

You could try,

ActivePresentation.Slides(2).Shapes("MainChar").Fill.Visible=msoFalse

Cheers
Andy
 
Back
Top