Tech Support > Microsoft Windows > Windows CRM > Repositioning the window after resizing the Form
Repositioning the window after resizing the Form
Posted by Indomitable Spirit on March 21st, 2007


I love being able to change the size of the form using

window.resizeTo(1350, 900)

in an onload() event for the default form

However, I need to reposition the window after doing the resize

Is there something similar to window.positionTo(100,100) to reposition the
window?

--
Gerry

Posted by Indomitable Spirit on March 21st, 2007


Once again I have answered my own question:

window.resizeTo(1350, 900)
window.moveTo(40,20)

Works well for me.

--
Gerry


"Indomitable Spirit" wrote:


Similar Posts