Articles in this section
Category / Section

How can I set autosuggest popup to open when WinForms Editor control gets the focus?

1 min read

 

You can use the ProcessAutoComplete method in order to achieve this requirement.


C#

private void textBox1_GotFocus(object sender, EventArgs e)
{
    this.autoComplete1.ProcessAutoComplete (this.textBox1.Text );
}

VB

Private Sub textBox1_GotFocus(ByVal sender As Object, ByVal e As EventArgs)
    Me.autoComplete1.ProcessAutoComplete(Me.textBox1.Text)
End Sub

Also, we have the SingleClick property, which displays the AutoSuggest list when the user clicks on the target control.

C#

this.autoComplete1.SingleClick =true;

VB

Me.autoComplete1.SingleClick = True


Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied