Cursor not advancing following event execution

  • Thread starter Thread starter David S.
  • Start date Start date
D

David S.

When using the OnExit event on a control, the cursor does
not advance to the next control even if Cancel is forced
to false.

Tried the same routines (calculations) on LostFocus. The
cursor tabs to the next control after the second stroke on
the tabl key.

Any ideas?

David S.
 
Cancelling a control's Exit event *should* stop the cursor from advancing to
the next control.

LostFocus does not have a Cancel argument.

Could there be some other aspect to this issue, for example something in a
KeyDown event of the form or control?
 
Have you tried setfocus method for the next control in tab order as the last
command of OnExit event?
 
Back
Top