Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by fsdcoder

  1. fsdcoder

    Converting all Word Documents to Plain Text(.txt) format in a "Specific" folder

    Hey, So, I was able to convert one word document to .txt format (See Code below). Dim objWord, objDoc Set objWord = CreateObject("Word.Application") Set objDoc = objWord.Documents.Open("C:\VBS\Testing.docx") objDoc.SaveAs "C:\VBS\Testing.txt", 2 objDoc.Close objWord.Quit Set objDoc = Nothing...

Part and Inventory Search

Back
Top