Using AutoCompleteEditText catching characters in filename

Asmoro

Active Member
Licensed User
Longtime User
Hi all,

I perfectly use the AutoCompleteEditText_ TextChanged to catch the first 3 characters in a filename with a part of the code "If New = St.substring2(0,3) Then.......etc.

But what I have also to catch characters in the middle or end of a filename?

Someone having a solution for this?
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
You do not need to use TextChanged with AutoCompleteEditText. It should work automatically.

However it only works with the prefix. You should use a database if you want to find matches that do not start at the beginning. Another option is to build a small index.

This is how the IDE "find sub" tool works:
SS-2012-02-28_09.59.00.png
 
Upvote 0

Asmoro

Active Member
Licensed User
Longtime User
Hi Erel,

Maybe that's the problem, I don't have a 'static' database as the filenames
comes from jpegs, which come and go.

And I also think it's impossible making an index because of that.

Thanks anyway.
 
Upvote 0
Top