|
|
|||||||||
|
|||||||||
|
|||||||||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today! |
|
#1
|
|||
|
|||
|
I designed my Form and my Report to look the same, to be user friendly.
I've added an email button so when someone fills out the form they can send that report. The problem is that ALL records of the report are sent and it's only text, no lines that separate the fields. How do I send (email) the current record with all of the lines drawen in? Thanks, Dan |
|
#2
|
||||
|
||||
|
You have to replace the carriage returns chr(13) .
Replace( strText, vbCrLf, "<br>" ) '---for html Replace( strText, vbCrLf, chr(13) ) '---for email Try that. Thanks. |
![]() |
| Viewing: ASP Free Forums > Database > Microsoft Access Help > Help - Email a Report |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|