Replacing check boxes with underlines

  • Thread starter Thread starter Anita Mossey
  • Start date Start date
A

Anita Mossey

Several fields in my database have a data type of Yes/No.
Is there a way to replace the check boxes with underlines
on the report?
 
Several fields in my database have a data type of Yes/No.
Is there a way to replace the check boxes with underlines
on the report?

can you be more specific?
what do you want the underlines to do? or be a result of? or indicate?

try this idea
say your yes/no indicates absent

1. Create an unbound control field and call it...txtAbsent

2. In Form current

if me!absent = True then
txtAbsent.FontUnderline = True
txtAbsent.FontBold = True
else
txtAbsent.FontUnderline = False
txtAbsent.FontBold = False

end if
 

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

Similar Threads


Back
Top