Rev
Tue Jun 22 15:23:14 CDT 2004
Thanks,
using split worked fine
now what I want to do is highlight or bold the expressions found in the
result
the search is complete and you can see it at
http://www.kujawas.net/study/bible/bible.html
So any ideas on highlighting the keywords in the result?
"Bruce Hensley" <dummy@nowhere> wrote in message
news:O%23Ctr3HWEHA.2444@TK2MSFTNGP11.phx.gbl...
> How about using SPLIT to create an array of keywords?
>
> dim sMemo, aKeywords
> ' code here to get memo field contents into sMemo
> aKeywords = split(sMemo, ",")
>
> "Rev. Michael Kujawa" <sdkngfksdnf> wrote in message
> news:uDz5PJGWEHA.2176@TK2MSFTNGP11.phx.gbl...
> > I am trying to code a search action for an asp page
> > this will search an mdb memo field for occurrences of
> > each substring from a form field that can have multiple
> > values
> >
> > for example in the form field name "keywords"
> > the user could input per following example
> >
> > one flesh, marriage, women
> >
> > the keywords I want to contain phrases as well
> > as individual words. Each value or substr of the field
> > will be separated with commas.
> >
> > Question how can I extract the substrings and
> > create variables holding each substring encountered
> > Is this possible and if so how?
> >
> >
>
>