Subject Re: closing form with windows
From Lee Grant <camilee@nospam.comcast.net>
Date Sat, 23 Jan 2021 01:52:55 -0500
Newsgroups dbase.getting-started

Oops, had a "no hoe" moment myself. :)

>> but changing the form property to "mdi = false" and the "sysmenu =
>> false"

Should be "by changing"

In addition that code I posted for you to use in the Command Window
should be restated also:

f = new form()
f.sysmenu = false
f.open()
// manually close the form because the X is still there. Set the mdi.
f.mdi = false
f.open()
f.close()


Lee

On 1/23/2021 1:48 AM, Lee Grant wrote:
> but changing the form property to "mdi = false" and the "sysmenu =
> false". Again, when it's time to close the form, however, you'll need to
> programmatically close it manually...with form.close(