FrontPage 2003 - Access database

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm searching an access database with a FrontPage Wizard form. Is there any
way to show the number of matches found i.e. the number of records that match
the search word.? Thanks for any replies.
 
You would have to configure a second Database Results Region with a custom
query that had all the same criteria, but use a custom query like

SELECT COUNT(*) as reccnt WHERE ...

and then display the reccnt field.

Jim Buyens
Microsoft MVP
http://www.interlacken.com
Author of:
o--> Microsoft Visual Web Developer 2005 Express Edition: Build a Web Site
Now!
o--> Microsoft Office FrontPage 2003 Inside Out
o--> Microsoft Windows SharePoint Services Inside Out
o--> Faster Smarter Beginning Programming
 
Back
Top