Sub RUN_Query()
Dim SQL_Text As String
SQL_Text = "Select * from MindMark"
DoCmd.RunSQL (SQL_Text,false)
End Sub
when I try to run it,
I kept on getting an error msg: A runsql a action requires an argument consisting of sql statement
How can I fix the problem?
THX
JEff
Dim SQL_Text As String
SQL_Text = "Select * from MindMark"
DoCmd.RunSQL (SQL_Text,false)
End Sub
when I try to run it,
I kept on getting an error msg: A runsql a action requires an argument consisting of sql statement
How can I fix the problem?
THX
JEff