In the visual designer/Variants I only have one entry - 1400 x 700, scale = 1(160 dpi)
In the B4J file I have added
But when runs it is always small ( 600 x 600 guessing)
But if I add this code in AppStart I can get it to the larger window.
Hoping that someone can tell me what i am missing. I would really like to be able to have the window size control come from thr visual designer rather than code if possible since I have anchors there. I did some searches first and found some posts on the Visual Designer and Variants but I didnt understand all of it LOL. Is there a tutorial available for controlling the window size?
In the B4J file I have added
B4X:
#Region Project Attributes
#MainFormWidth: 1400
#MainFormHeight: 700
#End Region
But if I add this code in AppStart I can get it to the larger window.
B4X:
Sub AppStart
MainForm.WindowWidth = 1400
MainForm.Windowheight = 700