deprecated error while using ppt 2007

Joined
Nov 14, 2009
Messages
2
Reaction score
0
I have a ppt macro I use in ppt 2003 and when I use in 2007 I get you have "specified deprecated error" unsure whats the next step.

Billyj
 
Deprecated error

I appreciate the help. I looked up on the error list and did not find a solution. my third line errors out" .VerticalAnchor = msoAnchorBottomBaseLine" and I really do not know where to begin. I inherited this project and am unsure how to fix. Appreciate any help.

PHP:
With .AddLabel(msoTextOrientationHorizontal, TitleLeft, TitleTop, TitleWd, TitleHt).TextFrame
			.AutoSize = ppAutoSizeNone
			.VerticalAnchor = msoAnchorBottomBaseLine
			With .TextRange
				With .InsertAfter(PathTxt)
					.Font.Size = OptionSz
					.Font.Italic = msoFalse
					.Font.Name = OptionFontNm
					.Font.Color.RGB = Blue
					.ParagraphFormat.Alignment = ppAlignRight
				End With
End With 
End With
 
Back
Top