From: Arjan v. I. <af...@cs...> - 2005-12-14 11:06:01
|
On 14-dec-2005, at 8:53, Conal Elliott wrote: > Is it possible to change the min & max values of a slider after > creation? Maybe import Graphics.UI.WXCore sliderSetRange :: Slider a -> Int -> Int -> IO () works. Sometimes it is necessary to turn to WXCore functions because not everything is available in the higher-level WX layer. The two *huge* HTML pages come in handy then: http://wxhaskell.sourceforge.net/doc/ Graphics.UI.WXCore.WxcClassesAL.html http://wxhaskell.sourceforge.net/doc/ Graphics.UI.WXCore.WxcClassesMZ.html Good luck, Arjan |