Space Function

 

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.

 

Example:

 

' This sample shows the space function

 

Sub Main

 

    MsgBox "Hello" & Space(20) & "There"

  

End Sub