boybigote via AccessMonster.com said:
Is it possible to indent the first line of every
paragraph in a access report?
Access itself doesn't work with "paragraphs", so it will be up to you.
Assuming your separation for a paragraph is the VBA built-in constant
vbCrLf, used either once if you want no space between paragraphs, or twice,
if you want a double-space between them, you can simply follow the "vbCrLf"
with a quoted string of the number of spaces you want to indent.
Me.txtMyTextBoxDisplay = " " &
"sometextstringwhichcouldbestoredinavariable" _
& vbCrLf & " " &
"nextparagraphwhichcouldbestoredinavariable"
If you want other formatting, too, then you might investigate using a
third-party "Rich Text" control. MVP Stephen Lebans has one at his website
http://www.lebans.com, which is free for the downloading. FMS, Inc. sells a
product for this purpose,
http://www.fmsinc.com.
Larry Linson
Microsoft Access MVP