Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Fabien Bodard
2009/12/11 Jean-Yves F. Barbier <12u...@gmail.com>: > Fabien Bodard a écrit : >> ok Error from mine :) ... but for one part the min size is fixed at >> the desing but only for windows with ToolBox option at true > > O_o: I checked Toolbox and my CPU climbed up to 100% (gbx2), starting > the applica

Re: [Gambas-user] Minimum Size of a Form / for Kadaitcha Man

2009-12-11 Thread Alessandro Rinaldi
http://www.mombu.com/medicine/psychology/t-trolls-the-kadaitcha-man-1061830.html I see :) -- Return on Information: Google Enterprise Search pays you back Get the facts. http://p.sf.net/sfu/google-dev2dev _

Re: [Gambas-user] Minimum Size of a Form / for Kadaitcha Man

2009-12-11 Thread Werner
On 11/12/09 18:27, Emil Tchekov wrote: > Dear friend, > > can you please stop with this behaviour? > > I will be very thankfull and appreciating your good manners. > > Thank you very much in advance > > sincerely > > Emil > > I googled him up and could not find any constructive comments made by

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Jean-Yves F. Barbier
Fabien Bodard a écrit : > ok Error from mine :) ... but for one part the min size is fixed at > the desing but only for windows with ToolBox option at true O_o: I checked Toolbox and my CPU climbed up to 100% (gbx2), starting the application but not showing anything!? -- Trouble always comes at

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Fabien Bodard
2009/12/11 Kadaitcha Man : > Fabien Bodard wrote: > >> ok Error from mine :) ... but for one part the min size is fixed at >> the desing but only for windows with ToolBox option at true > > Not true. The minimum size of any form shown as modal is the design-time > size. yes > > --

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Kadaitcha Man
Fabien Bodard wrote: > ok Error from mine :) ... but for one part the min size is fixed at > the desing but only for windows with ToolBox option at true Not true. The minimum size of any form shown as modal is the design-time size. -

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Werner
On 11/12/09 19:01, Fabien Bodard wrote: > ok Error from mine :) ... but for one part the min size is fixed at > the desing but only for windows with ToolBox option at true > > And in gambas3 with windows.type at Utility > Yes that works for me. Thanks! Werner -

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Jean-Yves F. Barbier
Fabien Bodard a écrit : > ok Error from mine :) ... but for one part the min size is fixed at > the desing but only for windows with ToolBox option at true zarb, it would be a good idea to also have min X,Y (not especially linked to a toolbar) > And in gambas3 with windows.type at Utility -- If

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Fabien Bodard
ok Error from mine :) ... but for one part the min size is fixed at the desing but only for windows with ToolBox option at true And in gambas3 with windows.type at Utility 2009/12/11 Jean-Yves F. Barbier <12u...@gmail.com>: > Fabien Bodard a écrit : >> in gambas 2 the minimum size of a form is se

Re: [Gambas-user] Minimum Size of a Form / for Kadaitcha Man

2009-12-11 Thread Emil Tchekov
eitag, 11. Dezember 2009 11:27 > An: mailing list for gambas users > Betreff: Re: [Gambas-user] Minimum Size of a Form > > > 2009/12/11 Fabien Bodard : > > > in gambas 2 the minimum size of a form is set by the size given > at the desing... > > BWAHAHAHAHAHAHAHAHA!

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Jean-Yves F. Barbier
Fabien Bodard a écrit : > in gambas 2 the minimum size of a form is set by the size given at the > desing... it's only true if it is a fixed sized, otherwise you can shrink it as you want... -- It's the Magic that counts. -- Larry Wall on Perl's apparent ugliness -

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Kadaitcha Man
2009/12/11 Fabien Bodard : > in gambas 2 the minimum size of a form is set by the size given at the > desing... BWAHAHAHAHAHAHAHAHA! Guess again. "if this is not to answer the question ... It is wiser to shut up!" --

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Fabien Bodard
in gambas 2 the minimum size of a form is set by the size given at the desing... 2009/12/11 Werner : > How can I ensure a resizable form does not get smaller than a certain > minimum? > That won't work: > > Public Sub Form_Resize() >  If Me.Width < 200 Then >    Me.Width = 200 >   ' Stop Event >  

[Gambas-user] Minimum Size of a Form

2009-12-10 Thread Werner
How can I ensure a resizable form does not get smaller than a certain minimum? That won't work: Public Sub Form_Resize() If Me.Width < 200 Then Me.Width = 200 ' Stop Event Endif If Me.Height < 180 Then Me.Height = 180 ' Stop Event Endif End ...no matter if I use Stop Event o