> I do not want the user input to be applied until the user has stopped > clicking a control for at least 2 seconds, then only the last entered > value is wanted. Can I do this with an Event structure?
Not just with an event structure. You need to build a state machine that moves from value changing states to value committed state. You can then use either an event structure or polling to move from the committed to changing states. Since you will need to measure time, you will want to use the timeout if you do use the event strucuture. Greg McKaskle
