hi,
it can be done , but you have to save many words and letters and you have check if the typed is in the predictive words lists. Its little difficult.
~kaushik
I did a sample based on a fixed source vocabulary a while ago, before the new dictionary data type became available, at
To rework it to a dynamic word base in TinyDB, I would instead of my dictionary global variable, use TinyDB, with lower case tags of minimum length 3, and for each tag have a list of all words containing that tag.
As the user changes the textbox.Text contents, refresh the ListView.Elements from the value in TinyDB from tag = downcase of Textbox.Text, default = empty list.
If TinyDB returned an empty list, add textbox.Text as an item to the previous tag's value list, as the user types ever longer words into textbox.text.