`
Par2: Accept Loop -- Why it fires "multiple" times 1998-07-27 -- Richard Taylor The ACCEPT loop cycles once for every event that occurs in your procedure that your code might need to handle. Some actions fire multiple events. For example: opening the window fires EVENT:OpenWindow and EVENT:GainFocus; tabbing from one control to another fires EVENT:Accepted for the control you're moving from (if the user entered data) then EVENT:Selected for the control you're moving to. That's why ACCEPT sometimes cycles multiple times. Printed November 23, 2024, 11:15 pm This article has been viewed/printed 35291 times. |