Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Changing CE10 DHTML report viewer to be maximised defaultly

Status
Not open for further replies.

MajorMel

MIS
Nov 15, 2004
6
AU
Hi,

I'm trying to find out if I can change either an option or some coding in a default csp (or even an IE setting!) to make my CE10 eportfolio/DHTML report viewer screen always show maximised to the whole screen. Currently when viewing a report, the DHTML viewer - and indeed the whole eportfolio - shows up in a small IE screen (I assume this is a default). Can I change this default to make the screen always maximised??

Thanks heaps in advance!!!

Mel.
 
Is this on every PC or just on a single PC under a single account?

It might be that when you fire up IE then it is defaulting to it's last window size, so first try launching IE with a default page other than CE. What is the size of the browser window?

F11 toggles IE to full screen mode.
 
I don't know about maximizing, but I have modified code in rptshowreportscripts.js to increase the size of the display window. Search for this code about line 65 of the file:

Code:
var windowProp = "width=800,height=600,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,left=150,top=100";

and change it to something like:

Code:
var windowProp = "width=1125,height=650,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,left=0,top=0";
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top