Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to make a 'search engine' for looking up a user specified string into a memo field. I've made several attempts using a query and 'Like' operator on memo field or even attempting to convert the memo field into a string (using CStr) with no success. Any ideas?

share|improve this question
1  
What are you trying? A filter on a form? A query? Please post an example, even if it does not work the way you wish. – Remou Feb 28 '12 at 10:23

1 Answer

i dont know if i get u'r question but you can use VBA to solve that: copy the memo field into a string

    findStr = MyForm.MySearch
    memoStr = MyForm.MyMemo

an use this

    pos = InStr(memoStr, findStr)
    If pos > 0 Then 'String found at position pos
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.