R
Rex the Strange
Hello All,
I don't know if this is possible, but I'll give it a shot, here. I'm
sick of writing the following line of code in control event handlers:
if not visible then exit sub
Is it possible to override whichever routine processes the event
handler list so that no events are fired if the control is not
visible?
Something like this, for example:
protected overrides sub handle_events
if visible then mybase.handle_events
end sub 'handleEvents
Of course, I know that there's no handle_events routine, but is there
an equivalent?
Please advise and tia,
rts
I don't know if this is possible, but I'll give it a shot, here. I'm
sick of writing the following line of code in control event handlers:
if not visible then exit sub
Is it possible to override whichever routine processes the event
handler list so that no events are fired if the control is not
visible?
Something like this, for example:
protected overrides sub handle_events
if visible then mybase.handle_events
end sub 'handleEvents
Of course, I know that there's no handle_events routine, but is there
an equivalent?
Please advise and tia,
rts