General XMetaL Discussion
XMetaL Community Forum › General XMetaL Discussion › Adding yes/no dialog box to "Accept or Reject Changes" dialog
-
bjorn April 10, 2017 at 11:50 am
Adding yes/no dialog box to "Accept or Reject Changes" dialog
April 10, 2017 at 11:50 amParticipants 0Replies 1Last Activity 5 years, 10 months agoHi.
Is the “Accept or Reject Changes” dialog box possible to configure or edit, via the XFT file or maybe code?
After some searching in the XFT files I can't find anyone that is this dialog box, but it seams like this is a XFT dialog box?What we want to do is to ask if the authors actual want to “accept all changes” in the document, with a yes/no dialog.
Is it possible to make changes to the “Accept or Reject Changes” dialog box (see attached image)?
Thanks!
Derek Read April 11, 2017 at 10:27 pm
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() -
AuthorPosts
- You must be logged in to reply to this topic.