John: That is pretty darned cool! Never would have thought of that. Do you do anything with that vClick_count variable?
Karen > Karen, Here is the routine that I use in my on-click EEP. I think this > will fix your problem. > > > > SET VAR vEEP_Running INTEGER > IF vEEP_Running IS NOT NULL THEN > RETURN > ENDIF > SET VAR vCLICK_COUNT = (.vCLICK_COUNT +1) > recalc var > pause for 1 > SET VAR vEEP_Running = 1 > PROPERTY RBASE_FORM TIMERENABLED 'TRUE' > RETURN > > > > The EEP in the form timer clears vEEP_Running and turns the timer off. > > > > Now the Mouse Happy users can click away! > > > > John > > >

