Computer Science Canada

How to close the windows

Author:  jasonlin6868 [ Mon May 26, 2008 7:52 pm ]
Post subject:  How to close the windows

I am doing th last page of my work, and I want to know how to automatic closed the program

Author:  jasonlin6868 [ Mon May 26, 2008 8:56 pm ]
Post subject:  RE:How to close the windows

How come no one answer me? Is that I am not explain clean enough?

Author:  Mackie [ Mon May 26, 2008 9:23 pm ]
Post subject:  RE:How to close the windows

return

Author:  CodeMonkey2000 [ Mon May 26, 2008 9:56 pm ]
Post subject:  RE:How to close the windows

quit works too. But I think it's made for debugging.

Author:  Sean [ Tue May 27, 2008 8:16 am ]
Post subject:  RE:How to close the windows

If you are creating your own window, then Window.Close will work. However, Return and Exit do what you want, as well as quit.

Author:  I Smell Death [ Wed May 28, 2008 9:20 am ]
Post subject:  RE:How to close the windows

yea i tend to use Window.Close
ex
Turing:

var win:int:=Window.Open("graphics:max;max")

put "bla bla bla"
Window.Close(win)


: