Re: [Gambas-user] Window minimum dimensions

2014-10-25 Thread Jesus
El 24/10/14 a las 20:20, Tobias Boege escribió: Do you think > it's good to add corresponding properties to Gambas' Window (and would > you do it)? > > Regards, > Tobi > Absolutely... Please Benoît, do it ;-) -- Jesus Guardon --

Re: [Gambas-user] Window minimum dimensions

2014-10-24 Thread Tobias Boege
On Fri, 24 Oct 2014, Beno?t Minisini wrote: > Le 24/10/2014 12:10, Tobias Boege a ?crit : > > Hi list, > > > > did anyone succeed in restricting a window to minimum dimensions, like "my > > window shall not be smaller than (w,h) = (100,100)". > > > > I tried quite some variations of the same idea:

Re: [Gambas-user] Window minimum dimensions

2014-10-24 Thread Benoît Minisini
Le 24/10/2014 12:10, Tobias Boege a écrit : > Hi list, > > did anyone succeed in restricting a window to minimum dimensions, like "my > window shall not be smaller than (w,h) = (100,100)". > > I tried quite some variations of the same idea: > >Private $iMinW As Integer >Private $iMinH As In

Re: [Gambas-user] Window minimum dimensions

2014-10-24 Thread Fabien Bodard
Normally it will work on tool boxes 2014-10-24 12:10 GMT+02:00 Tobias Boege : > Hi list, > > did anyone succeed in restricting a window to minimum dimensions, like "my > window shall not be smaller than (w,h) = (100,100)". > > I tried quite some variations of the same idea: > > Private $iMinW As

[Gambas-user] Window minimum dimensions

2014-10-24 Thread Tobias Boege
Hi list, did anyone succeed in restricting a window to minimum dimensions, like "my window shall not be smaller than (w,h) = (100,100)". I tried quite some variations of the same idea: Private $iMinW As Integer Private $iMinH As Integer Public Sub Form_Resize() Me.W = Max(Me.W, $iMinW