in

lotusscript search

Can someone please let me know if the method db.search() in lotusscript is case sensitive.  If so what can I do to make it ignore case sensitivity?

Solution: lotusscript search

In the Search method you use Formulas as you use in View selection.

Say if you wanted to search for Field Product  containing Electronics, then you have to use this formula in your search

SearchStr = {@UpperCase(Product) =  "} + Ucase(doc.ProductSelected(0)) + {"}
db.Search(SearchStr, nothing, 0)

~Hemanth