:banghead:My database went from 97-2000-2003-2007 in the hope that the References would work once it got to 2007. Alas, that's not working at all. I checked the 2007 References and they match with the original 97 db but I'm still getting an error.
When I try to open a form it's giving me:
Run-time error '13':
Type mismatch
Then it highlights:
Set rst = dbs.OpenRecordset(strSQL)
The whole code is:
Dim dbs As database
Dim rst As Recordset
Dim strSQL As String
Dim my_local_sw_version As String
Dim my_local_created_time As String
Set dbs = CurrentDb()
strSQL = "SELECT * FROM [Local SW Version]"
strSQL = strSQL & " Order by [ID];"
Set rst = dbs.OpenRecordset(strSQL)
I'm really frustrated and I'm hoping y'all can assist me with this.
Thank you.
When I try to open a form it's giving me:
Run-time error '13':
Type mismatch
Then it highlights:
Set rst = dbs.OpenRecordset(strSQL)
The whole code is:
Dim dbs As database
Dim rst As Recordset
Dim strSQL As String
Dim my_local_sw_version As String
Dim my_local_created_time As String
Set dbs = CurrentDb()
strSQL = "SELECT * FROM [Local SW Version]"
strSQL = strSQL & " Order by [ID];"
Set rst = dbs.OpenRecordset(strSQL)
I'm really frustrated and I'm hoping y'all can assist me with this.
Thank you.