GotFocus Method
Object:orderentry.cmdFocusControl
Expand/Collapse source code of procedure cmdFocusControl.GotFocus Source Code
*-- If user is tabbing around the form , don't stop here!
IF thisform.cboCustomer_ID.Enabled
  thisform.cboCustomer_ID.SetFocus()
ELSE
  IF thisform.txtShip_To_Name.Enabled
    thisform.txtShip_To_Name.SetFocus()
  ENDIF
ENDIF