Re: [racket-users] Trying to specify resize-border for instance of dialog

2021-06-25 Thread Stefan Schwarzer
On 2021-06-26 01:56, Don Green wrote: > When I specify as follows: > > (define dialog2 (new dialog% > (label "Get-Prototype-dialog") > (style resize-border) > )) > > Returned error: > resize-border: unbound identifier in:

Re: [racket-users] Trying to specify resize-border for instance of dialog

2021-06-25 Thread Sorawee Porncharoenwase
It should be 'resize-border. Notice the single quote character in front of “resize-border”. FWIW, if you want to ask multiple short questions, you could also use the Racket Slack channel. The sign up link: https://racket-slack.herokuapp.com/ The channel: https://racket.slack.com/ On Fri, Jun 25,

[racket-users] Trying to specify resize-border for instance of dialog

2021-06-25 Thread Don Green
When I specify as follows: (define dialog2 (new dialog% (label "Get-Prototype-dialog") (style resize-border) )) Returned error: resize-border: unbound identifier in: resize-border -- You received this message because yo