jester4281
IS-IT--Management
Is there a way to close form A from form B
Ex.
Thisform.Release() but it would be form B, like a B.release()
Ex.
Thisform.Release() but it would be form B, like a B.release()
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DO FORM FormB WITH This
LPARAMETERS toParent
Thisform.oParent = toParent
This.oParent = .NULL.
This.oParent.Release()
This.oParent = .NULL.
FOR EACH loForm IN _Screen.Forms
IF LOWER( loForm.Name ) == 'search_form'
loForm.Release()
ENDIF
ENDFOR