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.
Private Function GetTabPage(ByVal Name As String) As TabPage
Dim page As TabPage
For Each page In TabControl1.TabPages
If page.Name = Name Then
GetTabPage = page
Exit Function
End If
Next
End Function
GetTabPage("TabPage1").Enabled = False
Sometimes there are some methods and properties that don't show up in intellisense so it's worth trying the name of a method or different parameter types just to see if it hasn't been exposed properly.