Access 2003 form view check box

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • c stoddart

    Access 2003 form view check box

    I am trying to run a risk assessment to decide on a on-site or mailout audit. I would like to use a number. I want check boxes (5ea) to create a number in the text box. The final number will determine the action. I need 3 check boxes to be "or" "This one "or" that". Then 3 check boxes will be "Added" to the first boxs' checked.
    So far I have tried 40 or 50 expressions in the onclick event with no luck. Any suggestion?
    So far
    Code:
    Private Sub Check0_Click()   
        If Me.Check0 = -1 Then   
            Me.Text4 = 5 
        Else  
            Me.Text4 = "" 
        End If 
    End Sub
    Does not work.
    Last edited by Atli; Oct 21 '10, 01:16 PM. Reason: Please use [code] tags when posting code.
  • dsatino
    Contributor
    • May 2010
    • 393

    #2
    You need to explain what you're trying to do a little more concisely.

    Comment

    Working...