clear listbox

  • Thread starter Thread starter adriany
  • Start date Start date
A

adriany

anyway to clear listbox

i have 2 cbobox, cbobox1 = dates, cbobox2=accounts.

first pick date then account to list accounts data on
listbox.

i need button or when i go back to choose different date,
i want listbox clear
 
Just set its value to Null in the Click event procedure of your button:

Me.cboBox2 = Null
 
Back
Top