Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Search For Red Text in a Microsoft Word DocumentContent of Search For Red Text in a Microsoft Word Document.vbsMD5 Hash: 0C3658294BA2812D4E693D8ED7A70A3A |
||
Const wdColorRed = 255
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.Color = wdColorRed Do While True objSelection.Find.Execute If objSelection.Find.Found Then Wscript.Echo objSelection.Text Else Exit Do End If Loop | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |