I have an event procedure which is to be run when user select a certain record.
If I put it in an ON CURRENT event, it works.
However, I don't need it to run when the form is being opened. That is, when the form is opened and the records are loaded onto the form, my event procedure is called up for every record that is loaded. It slows my program down as this is unnecessary.
My question is how do I check that the event is not during the "loading" of the records.
something like:
on_current_event do:
if event is not during on_load then do this end if
end proc