Re: [Gambas-user] form_resize issue

2010-05-14 Thread Benoît Minisini
> > Hi Benoit, > > > > I put together the small project with 2 level of TabStrip controls and > > with tableview controls on some of them. > > First it seemed to work perfectly... but finally I could reproduce the > > effect on my computer. > > > > When the app starts up then (normally) the contr

Re: [Gambas-user] form_resize issue

2010-05-14 Thread Benoît Minisini
> Hi Benoit, > > I put together the small project with 2 level of TabStrip controls and with > tableview controls on some of them. > First it seemed to work perfectly... but finally I could reproduce the > effect on my computer. > > When the app starts up then (normally) the controls resize corre

Re: [Gambas-user] form_resize issue

2010-04-18 Thread Robert JUHASZ
OK, I play a little tonight! But there is a risk that I ask questions tomorrow :D Thx a lot, Robi 2010/4/18 Fabien Bodard > just do that to try : > > make a form > and add 3 panel in it > > then in each panel add 3 other panels > > give an unique color for each panels and then try each properti

Re: [Gambas-user] form_resize issue

2010-04-18 Thread Robert JUHASZ
Hi Benoit, I put together the small project with 2 level of TabStrip controls and with tableview controls on some of them. First it seemed to work perfectly... but finally I could reproduce the effect on my computer. When the app starts up then (normally) the controls resize correctly. Just after

Re: [Gambas-user] form_resize issue

2010-04-18 Thread Fabien Bodard
just do that to try : make a form and add 3 panel in it then in each panel add 3 other panels give an unique color for each panels and then try each properties and run the form ... it's the better way to understand 2010/4/18 Robert JUHASZ : > For the moment I just have a big one. I try to buil

Re: [Gambas-user] form_resize issue

2010-04-18 Thread Robert JUHASZ
For the moment I just have a big one. I try to build a small example which shows the problem. Robi 2010/4/18 Benoît Minisini > > Hello List, > > > > When the user resizes the main form of my application I try to follow the > > form size with the controls on the form. I use the Form_resize event

Re: [Gambas-user] form_resize issue

2010-04-18 Thread Benoît Minisini
> Hello List, > > When the user resizes the main form of my application I try to follow the > form size with the controls on the form. I use the Form_resize event and I > modify the controls' position accordingly. > > My hierarchy is something like that: > > Form > TabStrip1 > TabStrip11

Re: [Gambas-user] form_resize issue

2010-04-17 Thread Robert JUHASZ
Salut Fabien, Thanks for the idea. From one side it's a pity if the resize event doesn't work as I imagined, form the other side it's a good opportunity to learn how containers work in Gambas. Is there any good tutorial which shows how the different controls work? Their description is quite brief

Re: [Gambas-user] form_resize issue

2010-04-17 Thread Fabien Bodard
The resize event is used really not often on gambas ... it's not VB ! you need to use the container system to automagiquely resize the elements in your form ... all is managed with the mouse... Nothing to do by code :) look at VBox, HBox, Panel, and all other containers like form, etc and prop

[Gambas-user] form_resize issue

2010-04-17 Thread Robert JUHASZ
Hello List, When the user resizes the main form of my application I try to follow the form size with the controls on the form. I use the Form_resize event and I modify the controls' position accordingly. My hierarchy is something like that: Form TabStrip1 TabStrip11 TableView111