G
Guest
Dear Access experts,
I would like to create few select queries by VBA. Run them and see result when a user clicks a button (I must do this because the queries must be 100% correct and the Access Queries can be modified by everyone since no user level security is set).
Sample:
Private Sub cmdTest_Click()
Dim strSQL As String
strSQL = "Select * FROM Customers;"
' ... Any idea????
End Sub
Ari A.
I would like to create few select queries by VBA. Run them and see result when a user clicks a button (I must do this because the queries must be 100% correct and the Access Queries can be modified by everyone since no user level security is set).
Sample:
Private Sub cmdTest_Click()
Dim strSQL As String
strSQL = "Select * FROM Customers;"
' ... Any idea????
End Sub
Ari A.