I have been wondering for a while what the difference is between the following two:
Public Property ProgressMaxValue() As Integer
Get
Return maxval
End Get
Set(ByVal Value As Integer)
maxval = Value
End Set
End Property
vs
Dim progressMaxValue as Integer
ProgressMaxValue = 1184
The do the same exact thing right? I have examined other people's code, and am seeing more and more of the first example. Just trying to figure out the point, difference, and why people are using it lol. Maybe I missed the memo?