[plt-scheme] programmatically Closing MrEd Frame

From: Robby Findler (robby at cs.uchicago.edu)
Date: Fri May 23 13:29:10 EDT 2008

You want the `close' method, which is

  (when (send frame can-close?)
    (send frame on-close)
    (send frame show #f))

Robby

On Fri, May 23, 2008 at 8:58 AM, cwbowron at gmail.com <cwbowron at gmail.com> wrote:
> I have a MrEd frame based application and I would like to add a File-
>>Exit menu item that does the same thing as closing the frame with the
> close button on the frame, but I cannot figure out how to do that.  Is
> there a way to do this?
>
> Thanks
> _________________________________________________
>  For list-related administrative tasks:
>  http://list.cs.brown.edu/mailman/listinfo/plt-scheme
>
>


Posted on the users mailing list.