History |
Tab (strings)
Purpose
Returns a string containing the Tab character.
Syntax
Tab
Example
Sub Main()
Dim s As String
s = "apple" & Tab & "orange" & Tab & "grape"
Print s 'creates a tab-delimited list of strings and displays them to output window
End Sub
| ||