SPC(numberOfSpaces)

Create a specified amount of blank space.

Dim ST1 As String * 12
ST1 = SPC(5)
Debug "A",ST1,"A"         ' "A     A" is printed.  
                          ' Note the 5 blank spaced between each A.

Go CUBLOC home