Jun 26, 2003 #1 ouzojd Programmer Jun 9, 2002 314 AU Hi, in VB checkboxes have a property of checked that can be set to true or false, how is this done on an Access Form? Thanks
Hi, in VB checkboxes have a property of checked that can be set to true or false, how is this done on an Access Form? Thanks
Jun 26, 2003 #2 ssVBAdev Programmer May 23, 2003 257 US In VBA, the property is simply the .Value. At RunTime Change it like: chkCheckBox.Value = True Or at design time change it in the Properties pane of the VBA IDE. ******************** What's the best way to get the answers you need?? See FAQ222-2244 for details! Upvote 0 Downvote
In VBA, the property is simply the .Value. At RunTime Change it like: chkCheckBox.Value = True Or at design time change it in the Properties pane of the VBA IDE. ******************** What's the best way to get the answers you need?? See FAQ222-2244 for details!