View Full Version : Mouse Pointers on a Form


ChrisCruzin
12-14-2000, 08:04 AM
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.

Fornatian
12-15-2000, 11:46 PM
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.