leblanc9425
Registered User.
- Local time
- Today, 08:15
- Joined
- May 8, 2013
- Messages
- 22
I am completely baffled and need help troubleshooting the problem. Here is my problem:
1) I have a report with the following Rich Text Formatting:
="<head><B><U>(U) " & Trim([Title]) & " (U)</u></B></head> " & "</body>" & ([Description])
2) The report displays perfectly on screen however, if I try to print the single page report, it gets stuck in some kind of do loop and tries to print thousands of blank pages.
3) I believe I have narrowed down the problem to Carriage Returns. A Carriage Return anywhere in the [Description] memo field seems to cause the problem. If I remove CR, it prints fine. The [Description] field is a memo, text field in the Table but in the report it is set to Rich Text.
4) This run-away printing takes place when I try to print, and in my macro's that OutputTo or SendTo
If I do NOT use RTF in the report and keep the [Description] field as just Plain Text it seems to display and print fine but the report is not in the specific format needed.
This is what I am trying to achieve in the printed report:
(U) This is the bold underscored TITLE Field with hardcoding on either side (U) The Description portion starts immediately after the TITLE field.
Due to the problem above, I am forced to use this formatting:
(U) This is the bold underscored TITLE Field with hardcoding on either side (U)
The Description portion is not connected to the TITLE and is a separate control field.
This may seem like a minor difference, but it is what they want.
So, does anybody know why the CR would cause this problem and how do I fix it????
1) I have a report with the following Rich Text Formatting:
="<head><B><U>(U) " & Trim([Title]) & " (U)</u></B></head> " & "</body>" & ([Description])
2) The report displays perfectly on screen however, if I try to print the single page report, it gets stuck in some kind of do loop and tries to print thousands of blank pages.
3) I believe I have narrowed down the problem to Carriage Returns. A Carriage Return anywhere in the [Description] memo field seems to cause the problem. If I remove CR, it prints fine. The [Description] field is a memo, text field in the Table but in the report it is set to Rich Text.
4) This run-away printing takes place when I try to print, and in my macro's that OutputTo or SendTo
If I do NOT use RTF in the report and keep the [Description] field as just Plain Text it seems to display and print fine but the report is not in the specific format needed.
This is what I am trying to achieve in the printed report:
(U) This is the bold underscored TITLE Field with hardcoding on either side (U) The Description portion starts immediately after the TITLE field.
Due to the problem above, I am forced to use this formatting:
(U) This is the bold underscored TITLE Field with hardcoding on either side (U)
The Description portion is not connected to the TITLE and is a separate control field.
This may seem like a minor difference, but it is what they want.
So, does anybody know why the CR would cause this problem and how do I fix it????