This seems like it should be a simple question, but I can't figure out how
to get a scroll bar in a gui application like this one:

#lang racket/gui
> (define frame
>   (new frame% [label "Example"]))
> (for ([letter '("A" "B" "C" "D")])
>   (define grp
>     (new group-box-panel%
>          [parent frame]
>          [label letter]))
>   (for ([i (in-range 0 10)])
>     (new button%
>          [parent grp]
>          [label (number->string i)])))
> (send frame show #t)


I can see something like what I have in mind in Dr. Racket's
"Colors">"Color Schemes" preferences tab (at least on Mac OS), but I can't
figure out how to do it.

Thanks,
Philip

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to