I need to remove the focus from several textboxes; I tried using:
textBox.Focused = false;
but the property is read only. I then tried setting the focus on the form, so as to remove it from all the textboxes, but this also fails to work:
this.Focus();
and the function returns false
when a textbox is selected. So; how do I remove focus from a textbox?
Thanks in advance.