How to Delete History Items in Windows Forms AutoComplete
18 Nov 20181 minute to read
You can delete the history items persisted by the AutoComplete control by calling the AutoComplete.ResetHistory() method.
C#
this.autoComplete1.ResetHistory();
VBNET
Me.autoComplete1.ResetHistory()