scousethemoose
Programmer
Hi I'm currently working on a more usable versioning tool for Microsoft Word. I have almost finshed it but I have reached a brick wall.
I'm trying to display the comment dialog which is displayed for a specific version when the user clicks view comments command button.
I can access the versions dialog and even the save new versions dialog but not the comments, which I assume if it is possible I would have to pass the version item number to show the correct comment.
Dialogs I can access
I want to be able to do something like the code below.
Is it possible to do? Any help greatly appreciated.
I'm trying to display the comment dialog which is displayed for a specific version when the user clicks view comments command button.
I can access the versions dialog and even the save new versions dialog but not the comments, which I assume if it is possible I would have to pass the version item number to show the correct comment.
Dialogs I can access
Code:
'Show versions main dialog
Application.Dialogs(wdDialogFileVersions).Show
'Show save new version dialog
Application.Dialogs(wdDialogFileSaveVersion).Show
I want to be able to do something like the code below.
Code:
'Show version comments
Application.Dialogs(wdDialogVersionComment).item(i).Show
Is it possible to do? Any help greatly appreciated.