Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Search For and Modify Formatted Text in a Word DocumentContent of Search For and Modify Formatted Text in a Word Document.vbsMD5 Hash: 5555450D47B9BFD97B1A7722341C9927 |
||
Set objWord = CreateObject("Word.Application")
objWord.Visible = True Set objDoc = objWord.Documents.Open("C:\Scripts\Test.doc") Set objSelection = objWord.Selection objSelection.Find.Forward = True objSelection.Find.Format = True objSelection.Find.Font.Bold = True Do While True objSelection.Find.Execute If objSelection.Find.Found Then objSelection.Text = "" & objSelection.Text & "" Else Exit Do End If Loop | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |