S
sfleck
This simple statement is not working
Private Sub Command0_Click()
Dim strSQL As String
strSQL = "SELECT * FROM MailFairTable;"
DoCmd.RunSQL strSQL
End Sub
i have even tried this
DoCmd.RunSQL "SELECT * FROM MailFairTable;"
Even tried Execute
The Statement is simple but is erring out
Any Guidance is Appreciated
Private Sub Command0_Click()
Dim strSQL As String
strSQL = "SELECT * FROM MailFairTable;"
DoCmd.RunSQL strSQL
End Sub
i have even tried this
DoCmd.RunSQL "SELECT * FROM MailFairTable;"
Even tried Execute
The Statement is simple but is erring out
Any Guidance is Appreciated