Re: [racket] #lang racket/gui

2013-09-22 Thread Michael Rice
What I get is a white vertical line up the left side of my screen which, if I click it, I can get to expand to an empty window with the title "Example." Michael On Sun, Sep 22, 2013 at 10:18 AM, Michael Rice wrote: > Nevermind. It is displaying something up in the left-hand corner. Very > easy

Re: [racket] #lang racket/gui

2013-09-22 Thread Laurent
Probably the frame is actually shown, but with 0x0 size. Try with: > (require racket/gui) > (define frame (new frame% [label "Example"] [min-width 200] [min-height 200])) > (send frame show #t) Laurent On Sun, Sep 22, 2013 at 4:10 PM, Michael Rice wrote: > I'm exploring Ra

Re: [racket] #lang racket/gui

2013-09-22 Thread Michael Rice
Nevermind. It is displaying something up in the left-hand corner. Very easy to overlook. Michael On Sun, Sep 22, 2013 at 10:10 AM, Michael Rice wrote: > I'm exploring Racket's Gui Toolkit but I'm having a problem even getting a > frame to "show" in interactive mode. > > Definitions: > #lang ra

[racket] #lang racket/gui

2013-09-22 Thread Michael Rice
I'm exploring Racket's Gui Toolkit but I'm having a problem even getting a frame to "show" in interactive mode. Definitions: #lang racket/gui (clicked on run before entering lines below. Interactions: Welcome to DrRacket, version 5.3.6 [3m]. Language: racket/gui; memory limit: 128 MB. > (define