How to clear the Autocomplete textbox control value at run time in .net

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #3270
    Ankur
    Member

    you need to set following two property of textbox in the following order

    textBox1.AutoCompleteMode = AutoCompleteMode.None;
    textBox1.AutoCompleteSource = AutoCompleteSource.None;

    Thanks

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.