Hudson, down boy. He's a new guy that doesn't yet know the ways and there really is no reason to jump on him so quickly.
AccessBoy, VBA is a separate language from C/C++. You cannot use /n within a string. Although hudson does not have to post, you should take some of his advice. I believe that almost all (if not all) of the basic intro-level questions have been answered through this forum. The answer to these questions are stored in the forum's database, which you may search at your own leisure.
As a plus to that, we're moving more towards answering more technical/advanced questions. This is good because it allows the pool of access-knowledge people to focus on the questions you might one day have.
Anyhow, to answer your original post. In the VBA editor, goto the Help Menu and search for line returns.
VBA provides many different ways to perform a newline:
vbNewLine -newline
vbCr -carriage return
vbCrLf -carriage return line feed
vbLf -line feed
each of these provide different ways to produce a line break. However, if you want to generate multiple breaks, you will have to put them in your code twice, or you will need to generate a loop to call it more than once. In certain cases programmers have developed functions to do this.