At 12:56 PM -0700 5/3/99, Fawcett, Mitch wrote:
>Has anyone encountered anomalous behavior when returning to a form as in the
>following:
>
>Scenario #1)
>FormA is opened and a table item is selected.
>FormA calls FrmPopupForm (FormB).
>FormB calls a FrmReturnToForm (FormA) and tries to put the focus and an
>insertion point in a field on FormA. However the insertion point does not
>appear in the field. There is no complaint from Palm.
FrmSetActiveForm, which is called from FrmReturnToForm, *should* restore
the blinking insertion point to a field in a table. Of course, it will
only do this if the field in the table had the focus when the form was
deactivated.
Most likely what's happening is the code that executes in FormA before the
FrmPopupForm call is somehow deselecting the table item. If that happens,
then FrmReturnToForm can't re-enable it.
--Bob