Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'Assumes a tab control named tc and 4 TabPages
tc.Controls(0) = tabPage0
tc.Controls(1) = tabPage1
tc.Controls(2) = tabPage2
tc.Controls(3) = tabPage3
Dim index As Integer
For Each tp As TabPage In Me.tc.TabPages
index = CInt(tp.Tag)
Me.tc.TabPages(index) = tp
Next