I am trying to intercept Word's Insert Caption command.
I have a created a macro called InsertCaption in a global template. This does intercept the command properly.
Inside my Macro, I want to display the standard word Insert Caption dialog box and manipulate its controls before inserting the caption.
I have tried using
<pre>Dialogs(wdDialogInsertCaption).Display
</pre>
and then manipulating the "Title" before
<pre>Dialogs(wdDialogInsertCaption).Execute
</pre>
but it appears that the .Display does exactly the same as .Show, inserting the caption in the document before returning to my code.
Am I doing something wrong, or is .Display supposed to do this?
StuartR



