Guest_imported
New member
- Jan 1, 1970
- 0
¿
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.
Public x As Integer 'u can use Global as well
Msgbox x
Msgbox x
Public x As Integer
Msgbox Form1.x
Private x As Integer
Public Property Get SharedVariable() As Integer
SharedVariable = x
End Property
Msgbox Form1.SharedVariable
Public varname as vartype