Here is what I am trying to do in more detail. You have a word document that is named (for example), "key1.doc". Your students hand in 20 papers, that need to be graded via folders that I save on my flash drive. What I do is, I open Word 2007, and click the Compare option at the top. This allows me to compare the "key1.doc" to any other document that I chose. And it makes the corrections, and I put a grade on the paper, with my Tablet.
The problem is the procedure above is just too time consuming, because Word does not allow you to just keep that one document, 'key1.doc' as the main compare file. It makes you go through the process everytime of selecting it, and then you have to also select the file you want to compare. It takes too much time.
The solution that I have in my mind, is to make a macro, that by default sticks in 'key1.doc' into the Compare option, and then pops up a folder asking me to find the next document to compare. This would save a bunch of time.
I then hope to grow this, to possibly allow me to select all 20 documents at once, and compare them 1 by 1 with the macro.
I tried to build the Macro, through Word on my own, however, there is no way for me to stop it, on the open folder, without writing code. and it has been a long time since i did that.
Here is an example of the Macro I have gotten
ActiveDocument.Merge FileName:= _
"F:\Grade\214-7\214-7-3\MLA Reports\packet 1\Report 3.doc", MergeTarget:= _
wdMergeTargetSelected, DetectFormatChanges:=True, UseFormattingFrom:= _
wdFormattingFromPrompt, AddToRecentFiles:=False
Instead of the macro, leading to a specific file, I want it to lead to a folder, where I can chose which file to compare.
The problem is the procedure above is just too time consuming, because Word does not allow you to just keep that one document, 'key1.doc' as the main compare file. It makes you go through the process everytime of selecting it, and then you have to also select the file you want to compare. It takes too much time.
The solution that I have in my mind, is to make a macro, that by default sticks in 'key1.doc' into the Compare option, and then pops up a folder asking me to find the next document to compare. This would save a bunch of time.
I then hope to grow this, to possibly allow me to select all 20 documents at once, and compare them 1 by 1 with the macro.
I tried to build the Macro, through Word on my own, however, there is no way for me to stop it, on the open folder, without writing code. and it has been a long time since i did that.
Here is an example of the Macro I have gotten
ActiveDocument.Merge FileName:= _
"F:\Grade\214-7\214-7-3\MLA Reports\packet 1\Report 3.doc", MergeTarget:= _
wdMergeTargetSelected, DetectFormatChanges:=True, UseFormattingFrom:= _
wdFormattingFromPrompt, AddToRecentFiles:=False
Instead of the macro, leading to a specific file, I want it to lead to a folder, where I can chose which file to compare.