GUI/Maximum window dimensions: Difference between revisions

Content added Content deleted
Line 46: Line 46:
<lang gambas>
<lang gambas>
PUBLIC SUB Form_Resize()
PUBLIC SUB Form_Resize()
PRINT "The maximum window size that can be used is "; FMain.Width; " x "; FMain.Height
PRINT "The maximum window size that can be used without scrolling is "; FMain.Width; " x "; FMain.Height
END
END