Hello
Is it possible to set a minimum widht and height of a form?
Now I do this by code, like this:
Which does exactly what it is supposed to do. But it flickers like hell when I'm trying to make the window smaller than the treshold value of 600.
Is there a more native way to fix this?
Thanks
Is it possible to set a minimum widht and height of a form?
Now I do this by code, like this:
B4X:
If Width < 600 Then
MainForm.WindowWidth = 600
End If
If Height < 600 Then
MainForm.WindowHeight = 600
End If
Which does exactly what it is supposed to do. But it flickers like hell when I'm trying to make the window smaller than the treshold value of 600.
Is there a more native way to fix this?
Thanks