I have a MS access Form that access a View on SQL Server. The view on SQL Server shows 20 records and
looks great. When my program access the view through the MS Access application, the view only shows
one record, but it shows the record 20 times.
This is how I'm access the record:
Set db = CurrentDb()
strSQL = "SELECT * from dbo_v_DMRLabResults;"
Set rs = db.OpenRecordset(strSQL)
I have tried using sendkeys, refresh and requery and nothing seems to load the correct data into the
view. If I open the view from the query tab and do F9, it shows the good data but it doesn't save it.
Can someone tell me how I can fix this problem?
looks great. When my program access the view through the MS Access application, the view only shows
one record, but it shows the record 20 times.
This is how I'm access the record:
Set db = CurrentDb()
strSQL = "SELECT * from dbo_v_DMRLabResults;"
Set rs = db.OpenRecordset(strSQL)
I have tried using sendkeys, refresh and requery and nothing seems to load the correct data into the
view. If I open the view from the query tab and do F9, it shows the good data but it doesn't save it.
Can someone tell me how I can fix this problem?