Firstly, are the users' windows preferences honoured? For example, I open a form, resize it and, in GDC version 3.20, on next opening it would displayed resized. This does not seem to be the behaviour in GBC.
In GDC you can't resize a form, you can resize a window. With a browser, the window is a browser tab. You are effectively asking if a web program can change the size of the current browser tab. See discussions such as
https://ux.stackexchange.com/questions/9903/why-is-resizing-the-browser-window-bad-practice/9962#9962 If you are launching from some form of portal you can use the arguments from javascript window.open() to influence how a new window is opened with a good position and size. For example with
https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_open try with
function myFunction() {
window.open("http://localhost:6394/ua/r/gwc-demo", "", "top=200,left=200,width=600,height=800");
}
If you are using GDC+UR then the GDC should remember window position and size within stored settings when opening a new program