Finally figured out (first time I tried) how to make the browser maximize upon application start:
in html HEAD add this script/function block:
script lang="javascript"
function doOnLoad()
{
window.resizeTo(window.screen.availWidth, window.screen.availHeight);
window.moveTo(0, 0);
}
/script
Then in the BODY tag add this:
onload="javascript:doOnLoad()"
poof! works.
Subscribe to:
Post Comments (Atom)
C# Sucks!
JK!! Seriously, though, somewhere around C#-3 we should have inculcated ourselves with the question: "Does 'CAN' == 'SHOULD...
-
Have now wasted several hours downloading and evaluating SQL Test Data Generators. The only one that actually 'worked' doesn't ...
-
That pesky problem has reared its ugly head again! I remembered that its a permissions problem but forgot the wrinkle where you have to REMO...
1 comment:
A colleague noted that implementing this behavior is 'Rude'; hi-jacking the poor user's browser.
I sheepishly have to agree.
Post a Comment