Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Create a macro to show the collaboration pane

Hi everybody,

I'm trying to create a button with a macro that opens the collaboration pane

I took a look into the api guide and found only those possibilities:

ShowBookmarksBar
ShowDesignBar
ShowMenuBar
ShowNavigationBar
ShowSheetsBar
ShowStandardBar
ShowStatusBar

Does anyone has any good idea about it ?

Thanks in advance

russianblue

1 Solution

Accepted Solutions
Not applicable
Author

I didn't find anything in the API, but you could use keyboard shortcuts. The keyboard shortcut for the Collaboration Pane is F2.

You can create a macro to show it using:

Sub Collabo
set objShell = CreateObject("WScript.Shell")
objShell.SendKeys "{F2}"
End Sub


You must have Allow System Access in the Current Local Security drop-down.

View solution in original post

2 Replies
Not applicable
Author

I didn't find anything in the API, but you could use keyboard shortcuts. The keyboard shortcut for the Collaboration Pane is F2.

You can create a macro to show it using:

Sub Collabo
set objShell = CreateObject("WScript.Shell")
objShell.SendKeys "{F2}"
End Sub


You must have Allow System Access in the Current Local Security drop-down.

Not applicable
Author

Thanks a lot NMiller the solution you suggested works well for me !!!

Big Smile

rb