Hello,
Here's an interesting dilemma.
Lable1.Caption doesn't seem to get updated with sSTR although it's ByRef?
However, if we use a VARIABLE, then that gets updated.
Any explanation to this?
Here's an interesting dilemma.
Code:
TEST Label1.Caption
Private Sub TEST(ByRef sSTR As String)
sSTR = "hello"
End Sub
However, if we use a VARIABLE, then that gets updated.
Any explanation to this?