Hi, I am using MiniSearchView; it looks and works beautifully until I try to do anything (search database, et) with the text selected using [xxx.textfield.text] the CLV appears again above the text box with the selected text?
Ok...problem found, I was putting the value back into the field, sorry for my stupidity
So is there a way to close/hide the CLV, when i enter values into the textfield with code?
Right now, the LV appears, with the same text in it, above the textfield.
Ok, just re-read your message and realised 'searchview' should be the name of my MiniSearchView...
But I`m still getting the problem that the 'TextField_TextChanged' is being triggered after I have updated everything and it turns the CLV`s back on?
Looking at the 'TextField_TextChanged (Old As String, New As String)'.... OLD is blank, and NEW has the value I put into it. Obviously this is correct, but why is it triggering much later?
Add a global boolean variable named IgnoreTextChanged and use it in the class to ignore the TextChanged event. Set it to True before you modify the text, Sleep(50) and set it to False.