Solved

Shortcut to specific tab

  • 12 February 2020
  • 2 replies
  • 592 views

Userlevel 6
Badge +14

Hi,

How do I make a shortcut to a specific tab. E.g. instead of going here:

 I need to go here (same address):

 

icon

Best answer by Himasha Abeywickrama 12 February 2020, 15:59

View original

2 replies

Userlevel 7
Badge +18

Hi @Hans Andersen,

 

There’s no way to achieve this through the application as of yet. However, you could request this as a customization.

In Designer.cs file, you just have to change the SelectedIndex value to the tab which you want the application to open up when you open the form window. Let’s say you want to open up the 2nd tab in the form window, 

Then,

this.picTab.SelectedIndex = 1;

 

Note that the indexes start from 0.

 

Hope this helps!

Userlevel 6
Badge +14

@Himasha Kapugeekiyanage 

I was hoping to include the tab in the query string, so I could make a lobby like this: 

I just have to find another solution.

Thanks

Reply