Home › Forums › General XMetaL Discussion › Adding yes/no dialog box to "Accept or Reject Changes" dialog › Reply To: Adding yes/no dialog box to "Accept or Reject Changes" dialog
Reply to: Adding yes/no dialog box to "Accept or Reject Changes" dialog
April 11, 2017 at 10:27 pmThis dialog is not XFT it is a built-in dialog coded into the software.
If you want to make changes you might try to create a dialog with similar features using XFT that calls the APIs provided for working with Change Tracking and adds your own logic:
ActiveDocument.AcceptChange()
ActiveDocument.RejectChange()
ActiveDocument.AcceptAllChanges()
ActiveDocument.RejectAllChanges()
ActiveDocument.GotoNextChange()
ActiveDocument.GotoPrevChange()