strSQL = "<Title> " & rst!Title & "</Title>" & (here is where i want t new line) "<Author> " & rst!AuthorName & "</Author>"
I am trying to put a new line in the sql statement because I want to print the whole data into a text file. Is there any new line constant so that after evey field I have a new line..
the output of the above code is
<Title> this is the title<Author>this is the author
required output
<Title> this is the title
<Author>this is the author
Please help....
I am trying to put a new line in the sql statement because I want to print the whole data into a text file. Is there any new line constant so that after evey field I have a new line..
the output of the above code is
<Title> this is the title<Author>this is the author
required output
<Title> this is the title
<Author>this is the author
Please help....