Subject Re: closing form with windows
From Cornelius <jcmsoftware@gmail.com>
Date Tue, 26 Jan 2021 05:00:13 -0500
Newsgroups dbase.getting-started

Lee Grant Wrote:

> 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(
>
Hi there. This is nice. I played around and got it working with the form. Changing it with modify command it works very nice. Funny when you go and say modify form it changes every thing back to the original. Main thing it works now. Thank very much you people.