When I first learned about Tempvars I saw the simple immediate declaration...
I have also seen...
Out of curiosity I was looking for any notes on why one might use one or the other and ran accross...
I did not see these examples in one place anywhere. MSDN seems to have documentation of the second method. Anyone have any thoughts on best practice on this one or is it simply a matter of style and personal preference?
Code:
Tempvars!SomeVariable = "SomeValue"
I have also seen...
Code:
Tempvars.add "SomeVariable", "SomeValue"
Out of curiosity I was looking for any notes on why one might use one or the other and ran accross...
Code:
Dim SomeVariable as Tempvars
Tempvars!SomeVariable = "SomeValue"
I did not see these examples in one place anywhere. MSDN seems to have documentation of the second method. Anyone have any thoughts on best practice on this one or is it simply a matter of style and personal preference?