Re: [Fxruby-users] FXSplitterWindow move splitter programatically
Status: Inactive
Brought to you by:
lyle
From: Lyle J. <jl...@cf...> - 2004-01-13 15:33:42
|
Steve Tuckner wrote: > So here is my test program to try to do as your link says. What am I doing > wrong? The two direct child widgets of the splitter are the vertical frames (frame1 and frame2), and you want to set the height of the top frame (frame1) to be 500 pixels; so instead of this: text1.setHeight 500 you need this: frame1.setHeight 500 Hope this helps, Lyle |