Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, i need to know how to hide the application tabs.
Thanks
Marco
Hi,
Do you want to hide the tabs permanently?
If yes then
Document Properties > General > Check Hide Tabrow
If not do let the community know
Document Properties > General > Check Hide Tabrow
Hi,
Document Property->General -> check Hide Tabrow
Regards
Hi,
Do you want to hide the tabs permanently?
If yes then
Document Properties > General > Check Hide Tabrow
If not do let the community know
if based on use login if want to display we can use OSUSER(NTNAME) so that only given users can see the tabs/sheet
You can use two macros:
Sub HideTabRow
Set DocProp = ActiveDocument.GetProperties
DocProp.ShowTabRow=false
ActiveDocument.SetProperties DocProp
End Sub
Sub ShowTabRow
Set DocProp = ActiveDocument.GetProperties
DocProp.ShowTabRow=True
ActiveDocument.SetProperties DocProp
End Sub
hope this helps
if you want to hide all the tabs you can do it as suggested above.
If you want to conditionally show and hide sheets . you can go to Sheet properties then General Tab and under Show sheet you will get Condition radio button. You can write your expression here.
you can also use text boxes and give the same show condition here, if you want to show the sheet name on top instead of Tabrow
Thank
BKC
Hi Frank,
I wouldn't recommend macros for something that is possible with native functionality within QlikView. Tabs can be conditionally set to show/hide based on variables or other logic. So no need for a macro to do this.
Maybe have a read of this blog post by HIC
hope that helps
Joe
Thanks
Marco