Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]Public Const NL As String = vbNewline [green]'new line[/green]
Public Const DL As String = NL & NL [green] 'skip a line[/green][/blue]
[blue] Dim str As String
str = "Now is the time" & NL & _
"For all good men" & NL & _
"To come to" & NL & _
"The aid of their countrymen"
Debug.Print str[/blue]