footnotes

Download Footnotes

If you can't read please download the document

Upload: nicolas-lorre

Post on 11-Jan-2016

213 views

Category:

Documents


1 download

DESCRIPTION

s

TRANSCRIPT

Sub intext2footnote()Dim vLastSectionI, vField, i, JJ = ActiveDocument.Sections.CountFor i = 1 To ActiveDocument.Sections.CountIf i End WithSelection.GoTo What:=wdGoToBookmark, Name:="temp"Selection.Find.ClearFormattingWith Selection.Find.Text = "{ }".Replacement.Text = "".Forward = True.Wrap = wdFindContinue.Format = False.MatchCase = False.MatchWholeWord = False.MatchWildcards = False.MatchSoundsLike = False.MatchAllWordForms = FalseEnd WithSelection.Find.ClearFormattingWith Selection.Find.Text = "{ }".Replacement.Text = "".Forward = True.Wrap = wdFindContinue.Format = False.MatchCase = False.MatchWholeWord = False.MatchWildcards = False.MatchSoundsLike = False.MatchAllWordForms = FalseEnd WithActiveDocument.Bookmarks("temp").DeleteWith ActiveDocument.Bookmarks.DefaultSorting = wdSortByName.ShowHidden = FalseEnd WithSelection.MoveRight Unit:=wdCharacter, Count:=1Next vFieldNext iEnd Sub