do you program B4ppc in C# for the desktop and device?
I can't get this autocomplete working in C# and can't see how to debug what's going on inside the dll
it's working in vb so I'll leave it at that I think.
Here is the code that's not working
if (found)
{
txtText.Text = cboitem;
txtText.SelectionStart = strg.Length;
txtText.SelectionLength = txtText.TextLength - strg.Length;
cboCombo.SelectedIndex = jj;
}
what it does is when I type W for World it brings back the World string and places the caret at the start of the text instead of at the end. It also doesn't select the orld part of the text.
regards, Ricky