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
 
Back
Top