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 myObj as New myClass
Dim myObj as New myClass
myObj.Prop1 = "SomeValue"
myObj.Prop2 = "SomeOtherValue"
myObj.MyMethod1
myObj.MyMethod2
Dim myObj as myClass
Set myObj = New myClass
myObj.Prop1 = "SomeValue"
myObj.Prop2 = "SomeOtherValue"
myObj.MyMethod1
myObj.MyMethod2
Dim myObject as New myClass
With myObject
.ThisProperty = SomeValue
.ThatProperty = SomeOtherValue
.AndSoOn = SomethingElse
End With
With New myClass
.ThisProperty = SomeValue
.ThatProperty = SomeOtherValue
.AndSoOn = SomethingElse
End With