K kohle Active Member Licensed User Longtime User Oct 23, 2020 #1 In the designer I defined 650 x 650, but the window open always 600 x 600 in debug or release mode. See screenshot. What I do wrong? rg J. Attachments 23-10-_2020_21-38-25.png 113.2 KB · Views: 126
In the designer I defined 650 x 650, but the window open always 600 x 600 in debug or release mode. See screenshot. What I do wrong? rg J.
klaus Expert Licensed User Longtime User Oct 23, 2020 #2 You need to set the size on top of the code in the Main module: B4X: #Region Project Attributes #MainFormWidth: 650 #MainFormHeight: 650 #End Region Upvote 0
You need to set the size on top of the code in the Main module: B4X: #Region Project Attributes #MainFormWidth: 650 #MainFormHeight: 650 #End Region