philbullock1223
Registered User.
- Local time
- Today, 10:44
- Joined
- Dec 31, 2011
- Messages
- 55
I have a pretty simple question I can't see to find the answer to.
The user has the ablity to write notes on many lines (memo) that are stored in a table.
When I output to a text file I need a "**" to be placed before each line of the notes.
I have succeeded with the first line easily by:
Print #FileNbrExport, "** " & TABLE![Notes]
But it outputs my notes like this:
** Here is the first line
Here is the second line
Here is the third line
I need it to output my notes like this:
** Here is the first line
** Here is the second line
** Here is the third line
Any suggestions?
The user has the ablity to write notes on many lines (memo) that are stored in a table.
When I output to a text file I need a "**" to be placed before each line of the notes.
I have succeeded with the first line easily by:
Print #FileNbrExport, "** " & TABLE![Notes]
But it outputs my notes like this:
** Here is the first line
Here is the second line
Here is the third line
I need it to output my notes like this:
** Here is the first line
** Here is the second line
** Here is the third line
Any suggestions?