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 mSomeVariable As Integer
Public Property SomeVariable() As Integer
Get
Return mSomeVariable
End Get
Set(ByVal value As Integer)
mSomeVariable = value
End Set
End Property
Dim NewForm As New SecondForm
NewForm.SomeVariable = YourComboBox.Items(YourComboBox.SelectedIndex)