Re: [Gambas-user] Restoring position in an HSplit

2015-11-24 Thread Rolf-Werner Eilert
Aaaah - two values, ok... That was it! Thanks, Jorge Rolf Am 24.11.2015 12:30, schrieb Jorge Carrión: > You can use the layout property too. > > Public sub Form_Open() > > HSplit1.Layout[20,80) > > end > > Regards > > 2015-11-24 11:01 GMT+01:00 Tobias Boege : > >> On Tue, 24 Nov 2015, Rolf-

Re: [Gambas-user] Restoring position in an HSplit

2015-11-24 Thread Jorge Carrión
You can use the layout property too. Public sub Form_Open() HSplit1.Layout[20,80) end Regards 2015-11-24 11:01 GMT+01:00 Tobias Boege : > On Tue, 24 Nov 2015, Rolf-Werner Eilert wrote: > > I've got an HSplit which fills the main area in my application. > > > > The HSplit contains a TreeV

Re: [Gambas-user] Restoring position in an HSplit

2015-11-24 Thread Tobias Boege
On Tue, 24 Nov 2015, Rolf-Werner Eilert wrote: > I've got an HSplit which fills the main area in my application. > > The HSplit contains a TreeView on the left and a TabStrip on the right. > > Of course, the HSplit makes one bar in the middle when running. When the > program starts, the position

[Gambas-user] Restoring position in an HSplit

2015-11-24 Thread Rolf-Werner Eilert
I've got an HSplit which fills the main area in my application. The HSplit contains a TreeView on the left and a TabStrip on the right. Of course, the HSplit makes one bar in the middle when running. When the program starts, the position of the bar is set to 50 % automatically. Of course, the u