command for using a check mark in a cell, not a check box

  • Thread starter Thread starter Guest
  • Start date Start date
The term 'cell' has no meaning in Access. The example below will display a
check mark in a text box on a form ...

Private Sub Command8_Click()

Me!TestText.FontName = "Wingdings"
Me!TestText = Chr$(252)

End Sub

--
Brendan Reynolds (MVP)
(e-mail address removed)

harrelson said:
what command would I use to put a check mark in a cell or is it only
adding a check box?
 
Back
Top