TimSzrejter
Programmer
I have an Action Form in my application that I want a user to be able to fill out. After filling out the user clicks on an email button which calls a SendObject action to email a report to a particular person. The report is referencing the fields that were filled out on the form. My problem is, one of the fields on the form is a text box where the description of a problem is to be filled out. When I send the report, which is referencing this text box on the form by setting the control source of a text box on the report to the text box on the form, the email is sent to the particular person but it will only display so much text from the text box and truncate the rest off if it goes beyond a certain length(about 2 paragraphs).
If I do a DoCmd.OpenReport on this particular report, the report will show the entire length of text not truncated. Only when I send this to an email which converts the report into a RTF does it get truncated.
I would like to know if there is a way to send the report to an email and not truncate the text box.
If I do a DoCmd.OpenReport on this particular report, the report will show the entire length of text not truncated. Only when I send this to an email which converts the report into a RTF does it get truncated.
I would like to know if there is a way to send the report to an email and not truncate the text box.