Hi
I'm trying to do something like this:
Sorry i am a programmer but not a vb programmer
Can anyone help me out with the syntax? Do i need an else structure?
All i'm trying to do is allow the user to bring up a table when they search (as opposed to, say, just the standard form which comes up) - if they need it they check the box before clicking 'search'
Thanks guys
Eddie
I'm trying to do something like this:
Code:
Private Sub chkLaunchTableBox()
If (Me![chkLaunchTableBox] = -1) Then
DoCmd.OpenQuery "qryMyQuery"
End If
End Sub
Sorry i am a programmer but not a vb programmer
All i'm trying to do is allow the user to bring up a table when they search (as opposed to, say, just the standard form which comes up) - if they need it they check the box before clicking 'search'
Thanks guys
Eddie
Last edited: