joelwenzel
Programmer
- Jun 28, 2002
- 448
Some controls have a Tag property that you can set to equal an object. Does this create a copy of the object of just a reference to the original?
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 x As Integer = 5
Button1.Tag = x
Button1.Tag = 2
MsgBox(x)