I see this in almost every example, what does it mean/do?The Src variable is the object calling your event handler and the e is the event arguments like when you use a listbox control and someone clicks an item in the list. To get the item in the list you would use:<BR><BR>Dim varindex as integer<BR>varindex = Src.selectedindex to get the index value clicked. You can use the same process for getting other information about which event fired etc.