C
cgmoore
Hi,
I think I read somewhere that
strVar = "one" & "andtwo" & "andthree"
is the equivalent of
strVar = "oneandtwoandthree"
and not the same as
strVar = "one"
strVar += "andtwo"
strVar += "andthree"
is this correct?
Thanks,
Gerald
I think I read somewhere that
strVar = "one" & "andtwo" & "andthree"
is the equivalent of
strVar = "oneandtwoandthree"
and not the same as
strVar = "one"
strVar += "andtwo"
strVar += "andthree"
is this correct?
Thanks,
Gerald