Focal Point
How to maximum the browser ?

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4011058331

April 13, 2005, 07:58 AM
Ringo
How to maximum the browser ?
Can anyone tell me how the maximum the browser when the report output is HTML format ?
April 13, 2005, 03:42 PM
TexasStingray
Ringo, One way to do this is to first open a windows with java script using the window.open function and then have the target of the form in the main window set to that of the window you just opened and then using the submit() method in java script submit the main form.

Hope this helps
April 13, 2005, 04:08 PM
drew billingslea
you might try:

** in script language="javascript" (can't include the tags in here)

window.moveTo(0,0)
window.resizeTo(screen.width,screen.height)


It doesn't actually maximize the browser, but it makes the window the same size as the screen.

hth,

drew
April 14, 2005, 03:42 AM
Ringo
Thanks guys !
Since I am a new in WebFocus, I don't know how to include the said java script and make it work. Would you like to help me more ?
April 14, 2005, 04:53 AM
drew billingslea
I can't post a javascript solution here (technical reasons)

so if you go to

http://www.nickelsonfoil.com/focexec/maxwin.html

you will get a way to do it.

hth,

drew
April 15, 2005, 03:44 PM
Ringo
Thanks a lot !