Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
Positioning a New Window
Using start_window is it possible to start a new window and have it appear at a specific location on the screen and be a specific size? My code currently moves the window into position and sets the size through the SIZE property but the user sees the window jump into the correct location on screen instead of appearing at the location specified.
I thought there was a way to create a new invisible window, set the size, location, and then make it visible on screen but I can't find the information. Could you point me in the right direction or was there another way to position a new window without it jumping into the new location?
I thought there was a way to create a new invisible window, set the size, location, and then make it visible on screen but I can't find the information. Could you point me in the right direction or was there another way to position a new window without it jumping into the new location?
Comments
Another more complicated option is to use the SetWindowPos WinAPI method, which allows you to set the window's size and position without showing it.