E
Ed Landau
Hello: I am writing VBA code from within MS Access 2003. I have a table
tblA I'd like to access from VBA code behind a form. Must I just a
connection string if the table I want is right here in the same app? Is
there no way to tell a new recordset to just go execute an SQL string
locally?
The latest books I have are on Access2000.... so I'm not sure if there
something new.
dim strSQL as string
dim rs as ADODB.recordset
strSQL = "SELECT * from tblA;"
'I'd love to do this:
rs.open strSQL '
Thanks
-Ed
tblA I'd like to access from VBA code behind a form. Must I just a
connection string if the table I want is right here in the same app? Is
there no way to tell a new recordset to just go execute an SQL string
locally?
The latest books I have are on Access2000.... so I'm not sure if there
something new.
dim strSQL as string
dim rs as ADODB.recordset
strSQL = "SELECT * from tblA;"
'I'd love to do this:
rs.open strSQL '

Thanks
-Ed