[plt-scheme] drscheme 203.5 problem

From: Matthew Flatt (mflatt at cs.utah.edu)
Date: Mon Mar 10 08:56:18 EST 2003

At Sun, 9 Mar 2003 19:45:55 -0500, Dimitry Gashinsky wrote:
> I did make the dialog small, but only not to waste bandwith. 

Good.

> I have the same problem with 203 src from the web, so I am now pretty
> sure it is something specific to my machine.

What Linux variant and which compiler version are you using?

> I am determine to find it out. Could somebody on the list point me to
> the src files which draw basic dialogs like the one that I am
> attaching now.

I wish there was a reasonable answer to your question, but there's no
one place.

I imagine you could boil down the main example to

  (define f (make-object frame% "Test"))
  (make-object text-field% #f f void)
  (send f show #t)

If so, does the following example also produce just a line?

  (define f (make-object frame% "Test"))
  (instantiate editor-canvas% (f)
    [stretchable-height #f]
    [style '(no-vscroll no-hscroll)])
  (send f show #t)

Matthew



Posted on the users mailing list.