Prev: Reports - labels
Next: Access 2007 ExportToPDF plugin
From: ArneGolf on 15 Feb 2010 21:03 Got it. Had a misspelling in the frame name. Thanks "Duane Hookom" wrote: > Assuming your frame is named "fraYourFrameName", you can select it in design > view and open its properties. Find the "On Dbl Click..." property and change > it to [Event Procedure]. Click the [...] button on the right to open the code > window and make sure your code looks something like the following: > > Private Sub fraYourFrameName_DblClick(Cancel As Integer) > Me.fraYourFrameName.Value = Null > End Sub > > Double-clicking the frame in form view will now un-select all options. They > will all appear with grayishness in the option buttons. > > -- > Duane Hookom > Microsoft Access MVP > > > "ArneGolf" wrote: > > > I am too new at this and am not sure how or where to do that. > > > > "Duane Hookom" wrote: > > > > > The Option Group has a value property. You can use code to set the value to > > > something that isn't one of the option values. You could try Null or a large > > > number. > > > > > > -- > > > Duane Hookom > > > Microsoft Access MVP > > > > > > > > > "ArneGolf" wrote: > > > > > > > I have some checkboxes grouped within a frame so once I select one, put a > > > > check in the box, I have to have one of the boxes checked. Is there a way to > > > > allow all boxes to be unchecked once one has been checked? |