Dev Ashish Search record count

  • Thread starter Thread starter lmv
  • Start date Start date
L

lmv

I 'm using Dev Ashish search and would like to
see the count of rows/ records returned in a search result
(doesn't need to be stored or anything just want to use it
to get count info)

Is there a way to put a DCount or Count to the lstResult
that displays the query info so that info is visible on the form?

I have tried a few things but always returns #Error or #Name?

Thanks
 
On Thu, 10 Apr 2008 08:32:01 -0700, lmv

Listboxes have a ListCount property to return the number of items in
the list.
So create a textbox control and set its controlsource to:
=lstResult.ListCount

-Tom.
 
Perfect ... thanks!

Tom van Stiphout said:
On Thu, 10 Apr 2008 08:32:01 -0700, lmv

Listboxes have a ListCount property to return the number of items in
the list.
So create a textbox control and set its controlsource to:
=lstResult.ListCount

-Tom.
 
Back
Top