Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Is it possible to hide and unhide the tabrow of a document triggered by an event?
Thanks
RW
Try this macro, then you need to activate macro With some event or variable
Sub HideTab 'rem Hides tabrow in document properties set docprop = ActiveDocument.GetProperties docprop.ShowTabRow=false ActiveDocument.SetProperties docprop End Sub