[Gambas-user] Window size fitting

Dag Jarle Nerland Johansen - Gambas gambas at cd-bahia.com
Mon Mar 15 09:55:37 CET 2021


Thank you.
Also for the tip about resizing.
Regards,
Dag

Am 15.03.21 um 09:41 schrieb Gianluigi:
>
>
> Il giorno lun 15 mar 2021 alle ore 08:57 Dag Jarle Nerland Johansen - 
> Gambas <gambas at cd-bahia.com <mailto:gambas at cd-bahia.com>> ha scritto:
>
>     Hi,
>     what do I do wrong:
>     I make a window bigger than the monitor size, works fine with
>     scrollbars, set AutoResize to True.
>     But it does not fit the content to the window, also when I set
>     Arrangement to Fill.
>     Twist in my brain?
>     I normally program on a PC with a bigger monitor, but then get
>     surprised
>     when I see the result on a laptop - doesn't fit.
>     Grateful for any help,
>     Dag
>
>
> you have some possibilities or start with some small size and then 
> bring the window to:
>
> Me.Maximized = True
>
> Or:
>
> Private $iWidth As Integer = Screen.AvailableWidth
> Private $iHeight As Integer = Screen.AvailableHeight
>
> Public Sub Form_Activate()
>
>   Me.w = ($iWidth - 100)
>   Me.h = ($iHeight - 100)
>   Me.Center
>
> End
>
> or ...
>
> Regards
> Gianluigi
>
> ----[ http://gambaswiki.org/wiki/doc/netiquette ]----

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.gambas-basic.org/pipermail/user/attachments/20210315/4e775627/attachment.htm>


More information about the User mailing list