Hi All, I want to set my combobox in such a way that it could automatically recall to its previous "item". Pls see scenario below:

1. combobox lists:
- List1
- List2
2. Original combo1.text="List1"
3. If I selected "List2" then if there is a certain event that won't satisfy and it needs to back to "List1".
looks like this...

Code:
private sub combo1_selectedindex... - selected "List2"
   if not satisfied then
      combo1.text=previous list or "List1"
   end if
end sub
How to make it back to "List1" programatically?

Thx...