Hi everyone and Alex creator of
TabStrip Viewer and you can click on a tab and load a layout in a simple way using the code below.
Question is how do I do this in AS_TabMenuAdvanced?
Excuse my lack of knowledge I like the AS_TabMenuAdvanced so would like to use it, I have the following that checks the tab clicked just need to load a layout or do we have to create dynamic panels to hide and show.. Below how would I load a layout for each tab?
Any help would be appreciated - Thank you in advanced
[B4X] AS_TabMenuAdvanced
I am testing to see if this will work in a project I am a little stuck on loading a layout once you press a tab, or does this have to be a panel? I have been usingTabStrip Viewer and you can click on a tab and load a layout in a simple way using the code below.
B4X:
T abStrip1.LoadLayout("Page1", "PAGE 1")
Question is how do I do this in AS_TabMenuAdvanced?
Excuse my lack of knowledge I like the AS_TabMenuAdvanced so would like to use it, I have the following that checks the tab clicked just need to load a layout or do we have to create dynamic panels to hide and show.. Below how would I load a layout for each tab?
Detect tab click:
Private Sub AS_TabMenuAdvanced_Design4_TabClick (Index As Int)
Log(Index)
If Index == 0 Then
'code To load layout
End If
End Sub
Any help would be appreciated - Thank you in advanced