Space[$] ( number )
Skips a specified number of spaces in a print# statement.
The parameter number can be any valid integer and determines the number of blank spaces.
Sub Main MsgBox "Hello" & Space(20) & "There" End Sub