So you didn't thenOriginally Posted by quickheads
Because your CustomUI XML is using getVisible you need a getVisible callback, something like
[vba]
Sub something(control As IRibbonControl, ByRef returnedVal)
Select Case control.ID
Case "CustomTab": returnedVal = True
End Select
End Sub
[/vba]
But getVisible is only required if at some point you intend to toggle its visibility between True and False. If you want it always visible, just use
in the XML<tab id="CustomTab" label="OMAR" >





