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

H

harrelson

what command would I use to put a check mark in a cell or is it only adding a check box?
 
B

Brendan Reynolds \(MVP\)

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?
 

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

Top