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.
Dim iMyInt As Integer
Dim strMyString As String
iMyInt = Me!TabCtl0.Value
strMyString = Me!TabCtl0.Pages(iMyInt).Caption
MsgBox strMyString & " is the currently selected tab page."
[blue] intVariable = Me!TabCtlName.[purple][b]Value[/b][/purple]
is the same as:
intVariable = Me!TabCtlName[/blue]
[blue] strVariable = Me!tabCtlName.Pages(Me!tabCtlName).Name[/blue]