I have a bunch of tables that are tied to a table of quotes. On my main quoting form I have tabs for each type of item and I want them to say how many items are related to that quote. So I found myself using a whole bunch of chunks of code that look like the following:
It works great but it makes the screen flicker noticeably.
I want to know if there's a way to do this faster. I recently converted this database to Access 2003, would ADO be faster?
Code:
Dim rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset("SELECT MiscID FROM tblQuotesMisc WHERE QuoteNumber = '" & Me.QuoteNumber & "'", dbReadOnly)
If rs.BOF And rs.EOF Then
Me.tabMisc.Caption = "Misc Charges (0)"
Else
rs.MoveLast
Me.tabMisc.Caption = "Misc Charges (" & rs.RecordCount & ")"
End If
Set rs = Nothing
I want to know if there's a way to do this faster. I recently converted this database to Access 2003, would ADO be faster?