.property = string1 & string2
If one string is null, does an error occur? Do I have to write that as:
.property = Nz(string1) & Nz(string2)
How can I instantiate a string variable and set its value at the same time? Like:
Dim someString as String = NullString or "" or whatever
If one string is null, does an error occur? Do I have to write that as:
.property = Nz(string1) & Nz(string2)
How can I instantiate a string variable and set its value at the same time? Like:
Dim someString as String = NullString or "" or whatever