Thanks gdgsupport;
Sorry for the delayed response. I took me awhile to build a test “exe” program to run the example code.
After getting everything setup – I can confirm your suggestion did the job perfectly. It’s exactly what I was looking for.
I can also confirm that the “SetUIProp” identifier “fview” (persumably the initial window) does not show up in the Help files – which explains why I couldn’t find the solution myself.
For any other users interested in this problem here is the “test” JavaScript function I call from an “onload” HTML action.
function resizeWindow(){
window.external.SetUIProp('fview', 'Width', '800');
window.external.SetUIProp('fview', 'Height', '400');
window.external.SetUIProp('fview', 'Top', '30');
window.external.SetUIProp('fview', 'Left', '30');
}
Ron