Subject modal form
From Gaetano <gaetanodd@hotmail.com>
Date Wed, 19 Aug 2020 07:40:05 +1000
Newsgroups dbase.getting-started


Hi All,

Is there a command/property that allows me to know whether a form was
opened with readmodal()?

This is because I only want to release certain components on the form if
it was opened in isolation through the navigation pane. If it is opened
via the other form, I don't want to want to release those components
(e.g. _app.cursor)

The form is called from another form as follows:

local intCheck
set procedure to integrityAssessment.wfm additive
intCheck = new integrityAssessmentForm()
intCheck.mdi=false
intCheck.modal=true
intCheck.readmodal()

Cheers,
Gaetano.