What event is it that triggers when ever actually check a object in checkedlistbox

I have Itemscheck but it doesnt update textbox1 untill after i click something else.





c# Code:
  1. private void checkedListBox1_ItemCheck(object sender, ItemCheckEventArgs e)
  2.         {
  3.            
  4.             textBox1.Text = querylist(checkedListBox1,"OR");
  5.         }
  6.  
  7.         private string querylist (CheckedListBox CB_list,string and_or)
  8.          {
  9.              string querylist = "";
  10.              foreach (string x in CB_list.CheckedItems)
  11.              {
  12.                  querylist += x + " " +and_or+" ";
  13.              }
  14.              return querylist;
  15.         }