Microsoft Word Grammar, Style and Plagiarism Checking Macro
On this page, you get a Microsoft Word macro that automatically submits your text to Proofread Bot, and you will receive a useful grammar, style and plagiarism report (Click here for a sample).
What is a Word Macro, and how to install it?
For a general introduction to macros please refer to this Microsoft page. Installing this macro is easy, but if you have never used one please read this guide: http://www.gmayor.com/installing_macro.htm.
Microsoft Word Proofread Bot Macro
Sub Proofread_Bot()
ActiveDocument.SelectDim strTemp As StringstrTemp = Selection.TextSet objIE = CreateObject("InternetExplorer.Application")With objIE.Visible = True.navigate "http://proofreadbot.com"End WithWhile objIE.BusyWendWhile objIE.Document.readyState <> "complete"WendDim objParent As ObjectSet objParent = objIE.Document.forms(0)With objParentobjParent.Item("edit-body-und-0-value").Value = strTemp.submitEnd WithEnd Sub






