G
Guest
I'm having a problem with the ItemsSelected.Count. I have two list boxes on a form. The first list box contains a list of tasks. The second list box I want to be blank until a task is selected from the first list box. When a task is selected, I want the second list box to be enabled (which I know how to do) and to display all of the actions associated with that task. I have the correct tables, and know how to set up the queries to fill the second list box. The only problem is I can't find a procedure to trigger my code after the item was selected in the first list box. I tried the After Update Event, as well as Click and MouseDown. The code within these event procedures is called, but ItemsSelected.Count is still zero because the event procedures are called before the actual selection of the item is registered. Can someone help me figure out where to place my code so that I can tell which item was selected as soon as it was selected? Thanks!