J,
I'm not sure about the new 2007, but in previous versions, there is no way to change
the size of a checkbox.
However, you can make your own...
Create a label (ex. lblChkOne), make it transparent backcolor, and transparent border.
Size it appropriately for the size checkcbox you want, set the font to Wingdings and say
18 size, and set the caption to "o".
Place your "real" checkbox field on the form, and make it invisible (ex. chkOne)
Use the Click event of lblChkOne...
chkOne = Not chkOne
If lblChkOne = "o" Then
lblChkOne = Chr(254)
Else
lblChkOne = "o"
End If
Also, on the OnCurrent event of the form
If chkOne = True Then
lblChkOne = Chr(254)
Else
lblChkOne = "o"
End If
This will "toggle" the label between a box with a check, and an empty box.
--
hth
Al Campagna . Candia Computer Consulting . Candia, NH USA
Microsoft Access MVP
http://home.comcast.net/~cccsolutions
"Find a job that you love, and you'll never work a day in your life."