Thanks destruk for reply .
Actually i am doing same thing. problem is that - how to catch individual index. suppose
i got 4 suggestion by
searchPhrase.Len() > 2 like:
1) delhi
2)mumbai
3)kolkata
4)chennai
how to catch index 1) delhi which is in array 0 position. i want to block up button here.
__________________________________________________________________
In given keyboard by roku there is
space key when we press it it gives " " . i want to block it also as validation purpose .
Can you suggest for this.
i am doing :-
if msg.isPartialResult()
searchPhrase = msg.GetMessage()
if (searchPhrase=" ")
screen.SetSearchTerms(history)
screen.SetSearchTermHeaderText(searchHeaderText)
screen.SetClearButtonEnabled(false)
end if
end if
but what about when user press
2 or 3 or 4 ....so on space before character . problem is that it count one character for space also when i do
if searchPhrase.Len() > 2
Thanks
(Chandra Prakash Jamloki)