Mouse Pointers on a Form

  • Thread starter Thread starter ChrisCruzin
  • Start date Start date
C

ChrisCruzin

Guest
I have a database that summarizes data on a cover form. Detail for the summarized numbers can be reached by clicking the mouse on any of the summarized numbers. Different forms will open that present the detail.
My problem is that not all of the numbers on the first page have a detailed breakdown. I would like a marker,like a hand pointer or magnifying glass to appear when the mouse goes over those items that detail is available for. Has anyone done this in ACCESS? Help please.
 
How I do this is to enable/disable my 'further info' button based on the number of sub records I have

OnCurrent Event:

If DCount(Field,Table,Criteria)>0 then
Me.btnMoreDetails.enabled = true
else
Me.btnMoreDetails.enabled = false
end if

Works for me.
 

Users who are viewing this thread

Back
Top Bottom