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
--
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:
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
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
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