Hi
What is the idea behind using "With"? Is it to save time. I am reading this code
'Fill CityListBox
With CityListBox
.AddItem "San Francisco"
.AddItem "Oakland"
.AddItem "Richmond"
End With
+++++
I am thinking, this is the same as
CityListBox.AddItem = "San Francisco"...