I'm not sure you can do this without going into the windows api - not a place for the faint of heart .
A possible work around is to check the number of records required to trigger the scroll bar appearing and then use that in a test i.e.
Code:
Dim rst As DAO.Recordset
Set rst = Me.RecordsetClone
if rst.RecordCount >10 Then
' replace this with the code you want to run if the scroll bar appears
MsgBox rst.RecordCount
end if
Set rst = Nothing
Unfortunatley the api call that i've used in VB6 doesn't work in Access for some reason I'll keep looking but i don't think i'm going to find out why as it's straight off of MS own knowledge base. The second problem is how would you trigger the event.