Home | Tips | Library | Other Authors | Other WP Sites | Writer's Links | Contact | Site Map | Donate

Barry MacDonnell's
Toolbox for WordPerfect

Macros, tips, and templates for Corel® WordPerfect® for Windows®
© Copyright 1996-2024 by Barry MacDonnell. All Rights Reserved.

Page updated Jun 4, 2018

WordPerfect Tips
Main tips page | Browse more tips
Does the Document Review dialog box keep coming up even after you are finished reviewing the document with File, Document, Compare, Compare/ Review?

Here's how to -

•  stop it from appearing,
and/or

•  remove the feature's special Insertion and Deletion codes


WordPerfect menu choices refer to the <WordPerfect> menu (right-click on the top menu bar for a choice of menus). If you use a <Microsoft Word> menu, the choices might be absent from your menu (but not from the program), or they might be found under another menu selection. See here for more.


Related pages -


•  Using "Document Compare"  (i.e., File, Document, Compare, Compare Only)



Some common issues with the File, Document, Compare, Compare/ Review feature:

A user in a Corel newsgroup asked:
"Once you make reviewer edits to a document (via the Document Review option), you are stuck in review mode forever. Every time you open the document thereafter, a dialog box pops up, asking you if you are an author or a reviewer. I want to get my document back to normal!"
Another asked:
"... we are using Review for tracking changes ... how do you get rid of this Review dialog box when you are finished using this feature? Everytime we open this document this Review box pops up."
And what if you just want to get rid of the special Insertion and Deletion codes produced by the Review feature?

Try one of these solutions:
Solution 1:

•  Open the reviewed document as the Author;

•  accept or reject all changes (i.e., insertions or deletions);

•  after accepting or rejecting all changes, click the [Close] button on the Review property bar;

•  re-save the document;

•  re-open it.

Solution 2:

As Charles Rossiter (Corel C_Tech) suggested on Corel's WordPerfect Office 11 newsgroup (10/27/03):

•  Assuming there are no Review annotations [i.e., insertions or deletions] to be accepted or rejected [you can use Reveal Codes to verify this; be sure to also search for them in footnotes, endnotes, headers, footers, text boxes, etc.],

•  add and delete a space in the text;

•  press the Close button on the review bar;

•  re-save the document; then

•  re-open it.

If neither of the above solutions works —  or you just want to remove the special Insertion and Deletion codes — try this:

Solution 3

•  Open the reviewed document;

•  click Edit, Select, All;

•  copy the selection to the clipboard with Ctrl+C;

•  close the reviewed document;

•  in a new (empty) document, paste the slection with Ctrl+V;

•  either save this new document with the same name as the original, overwriting it, or save it with a different name;

•  close the newly saved document.
Test: Open the newly saved document. The Review Document dialog should not appear. Reviewer's/Author's comments and added changes should appear as normal text.

See also the macro below, which automates the first steps (up to saving it).
If Solution 3 does not work:

Solution 4(
Alternative to Solution 3)

•  Convert your document in a format that does not support Document Review.

•  According to the Corel Support site:

"A good format to export this file as would be Rich Text Format (RTF) or WP5.1/5.2. The document will not be in review mode when you open it. The reviewer's remarks are lost because the added text (red) and the deleted text (strikethrough) revert to regular text. Once opened, you can re-save the document as a standard WordPerfect Document (WPD)."



Here's a macro that will do the same thing as Solution 3 above. To copy this code into your WordPerfect program to create a working macro see here.

// PURPOSE: Removes the "Review Document" dialog that pops up when opening a document that has been previously reviewed with File, Document, Review.

OnCancel(End@)
OnError(End@)

Messagebox(vAns;"";"Remove the 'Review Document' dialog that pops up when opening this" +NToC(0F90Ah)+ "document if it has been previously reviewed with File, Document, Review?" ; OKCancel!)

if(vAns=2) Quit Endif

// First, exit from any header, footer, footnote, endnote, box, etc. - 
While (?Substructure or ?GraphicSelected)
 vSubDoc:=?CurrentSubDoc
 SubstructureExit
 If ((vSubDoc=10) or (vSubDoc=11))
  BoxEnd (Save!)
 EndIf
EndWhile
vBoxType:=?BoxContentType
If (vBoxType=1 or vBoxType=3) BoxEnd (Save!) Endif

// Store the current file's path and name -
vPathname:=?Path + ?Name

SelectAll // Select everything in the doc
EditCopy // Copy the selection
Close // Close the current file

// If the (now) current document has something in it (i.e., it's not blank)...
If(NOT ?DocBlank)
FileNew() // ...open a new doc window
Endif
EditPaste // Paste the selection into the new doc

PosDocTop

// Save the "host" file using the same name
// (an alternative is to use the FileSaveAsDlg() command,
// which will prompt to save using a different name) -

FileSave(vPathname;;Yes!)

Display(On!)
Messagebox(;"Finished";"The current file has been resaved to disk.")

Label(End@)
Return

// End of macro code