When concatenating strings, there are multiple valid methods of inserting spaces.
Space Function:
Print "A" & Space(1) & "B"
A B
VS
Quotes:
Print "A" & " " & "B"
A B
VS
Chr:
Print "A" & Chr(32) & "B"
A B
All three methods yield the same result. The only place where I found Space beneficial was when using a variable for the number of spaces.
Space( <expression of number - len(var)> )
Can anyone provide any insight on why one method is better than another?