From: Arjan v. I. <af...@cs...> - 2003-11-30 22:11:42
|
Hi Martin, > [..] the main window always starts up with a default width/height > and the resizes to whatever I specified. This happens even though I > use: > > f <- frameFixed [text := "Hello", clientSize := size 100 100] > > Is there a known work-around for this problem? Maybe creating it invisible and then setting visible to True after adding all your components...? Or you could buy a really fast computer :-) > Also, there is another issue which I'm abit worried about, the > executable > generated by GHC is 6.42 megs. You can "strip" the executable. This gets rid of everything that is linked to it but unnecessary. And then you can internally compress it using UPX ( http://upx.sourceforge.net/ ) The latter saves a lot. The Helium compiler goes from 6 megabytes to less than one. Regards, Arjan |