Sunday, July 20, 2008

Delete End Points from List using Powerpoint VBA

Remove End Periods from List using VBA

Sub Remove_Periods_From_List()

Dim oTR As TextRange

If Not ActiveWindow.Selection.TextRange Is Nothing Then

oTR = ActiveWindow.Selection.TextRange

MsgBox(Len(oTR))

End If

oTR.RemovePeriods()

End Sub

oTR.RemovePeriods() removes the period at the end of each paragraph in the specified text

No comments:

Post a Comment

StumbleUpon
Share on Facebook
Related Posts Plugin for WordPress, Blogger...
Download Windows Live Toolbar and personalize your Web experience! Add custom buttons to get the information you care about most.