Hi,

A 3rd-party program is using the Mail Merge to merge data into a Word-document. When this is done, Word is showing the document with the Mailings-tab.

I would like Word to show the Home-tab - as the Mail Merge is over and done at this time.

I have tried this:
<tab idMso="TabMailings" getVisible="rxtabMsoMailings_GetVisible"/>

and the VBA:
Sub rxtabMsoMailings_GetVisible(control As IRibbonControl, ByRef returnedVal)
returnedVal=False
End sub

But this will hide the Mailings-tab. Does anyone know if there is a "getSelected" argument or another way to select the Home-tab?

Thanks

Eva