G Guest Jan 15, 2004 #1 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\) Jan 16, 2004 #2 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 Click to expand... adding a check box?
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 Click to expand... adding a check box?