email using RTF

  • Thread starter Thread starter Samuel
  • Start date Start date
S

Samuel

Hi all

When I email a report using the RTF option the report is missing the check
boxes that appear on the report

What can be done?

Thank you,
Samuel
 
Hi all

When I email a report using the RTF option the report is missing the check
boxes that appear on the report

What can be done?

Thank you,
Samuel

Samuel,

I've gotten around this by using Yes or No instead of the checkbox. I
use the checkbox in the report query and then put an unbound field
where the checkbox would go and do the following.

Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)

If Me.Coll1GenED = -1 Then
Me.GenEd = "Yes"
Else: GenEd = "No"
End If


End Sub
GenEd is the unbound textbox on the report and Coll1GenEd is the
checkbox from the report query.

Hope this helps. Maybe someone out here has a better solution.

Rick
 
Check boxes are graphic elements and are not available using RTF, but you
should be able to use a font that displays a checkbox, or not depending upon
the value in the underlying field.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top