FineTune searching

2005-05-04 Thread FlexibleLearning
Hi troops, As part of a genealogy project, I needed a search that could be more or less specific (and so give more or fewer matches) depending on the User's selection of 'Narrow, Wide, Wider'. How have others resolved this? function booleanMatch fineTuneLevel,tStr,tSrcString --| Param

Re: FineTune searching

2005-05-04 Thread Mark Wieder
Hugh- Here's my take on what you presented: function booleanMatch fineTuneLevel, pStr, pSrcString local blnReturn -- turn multiple lines into a stream replace cr with space in pSrcString put false into blnReturn --| Param fineTuneLevel: -- 1 = exact phrase -- 2 = all words [A

Re: FineTune searching

2005-05-05 Thread FlexibleLearning
Neat, Mark...Filter is not among the words of my_frontThoughts! /H - Here's my take on what you presented: function booleanMatch fineTuneLevel, pStr, pSrcString local blnReturn -- turn multiple lines into a stream replace cr with space in pSrcString put false into blnReturn --| Param f

Re: FineTune searching

2005-05-05 Thread Mark Wieder
Hugh- Thursday, May 5, 2005, 12:58:10 AM, you wrote: Fac> Neat, Mark...Filter is not among the words of my_frontThoughts! It's starting to percolate up to the top of mine. I've been randomly going back over some of my old scripts and refactoring them to use filter() for speed. And I've entered

Re: FineTune searching

2005-05-05 Thread FlexibleLearning
Mark >> Neat, Mark...Filter is not among the words of my_frontThoughts! >It's starting to percolate up to the top of mine. I've been randomly >going back over some of my old scripts and refactoring them to use >filter() for speed. Houston... We have a small glitch. This breaks as it picks up

RE: FineTune searching

2005-05-05 Thread MisterX
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Mark Wieder > Sent: Thursday, May 05, 2005 17:20 > To: How to use Revolution > Subject: Re: FineTune searching > > Hugh- > > Thursday, May 5, 2005, 12:58:10 AM