` Printed Icetips Article

Icetips Article



Par2: Which control has focus?
1998-05-05 -- Danny Joe
 
Maintain two focus-related variables at the top of the Accept loop:

OldFocus  Short
NewFocus  Short

Code
Accept
  If Selected()  !new control is receiving focus
   OldFocus = focus()  !control losing focus
   NewFocus = Selected()  !control gaining focus
  End
End

If you initialize the variables in TakeEvent (priority less <= 3800), you can reference
them in TakeAccepted.



Printed April 29, 2024, 12:38 pm
This article has been viewed/printed 35107 times.