Hello there, i am using a normal Textbox for this. Here occurs the error. Same on the Syncfusion.Windows.Forms.Tools.MultiselectionComboBox.
Do you have an example for this too ?
i got a FillFilter Function,
this.mscbpiszielland.DataSource = filterdest;
This (filterdest) datasource comes from a database.
DataSet DSTMP = new DataSet();
strSQL = "Select DISTINCT tol25.land As destination from blaisd.tol25;";
Con.ConnectionString = MySQLConnString;
Con.Open();
MySqlCommand cmd = new MySqlCommand(strSQL, Con);
MySqlDataAdapter adapter = new MySqlDataAdapter();
adapter.SelectCommand = cmd;
adapter.Fill(DSTMP, "destination");
Con.Close();
return DSTMP.Tables["destination"];
in the designer i have this code...
this.AutoComplete1 = new Syncfusion.Windows.Forms.Tools.AutoComplete();
this.AutoComplete1.SetAutoComplete(this.mscbpiszielland, Syncfusion.Windows.Forms.Tools.AutoCompleteModes.AutoSuggest);
this.AutoComplete1.AutoAddItem = true;
this.AutoComplete1.AutoSerialize = true;
but still having this problem as in the video shown.
https://youtu.be/rwCrPmmJZC0
Any Ideas how to fix that ?
mscbpiszielland is a Syncfusion.Windows.Forms.Tools.MutliSelectionComboBox