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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

apllication screen adjustment problem

Status
Not open for further replies.

Maahjoor

Programmer
Nov 12, 2012
1
0
0
OM
Dear all,

i have develop an application on 20 inch screen monitor. when i run it from a bigger screen with greater resolutions, the software become very ugly, it do not zoom in or zoom out accordingly as we noticed in microsoft office suite etc. they fit to the client screen.

i am using windows 7, oracle developer 10g suite, oracle 10g database, java 7 update 9. internet explorer 9

i find one solution like below, but i cant apply it correctly or it is not working at all.

there is a applet parameter called clientDPI; if your forms are centimeter based you can increase this parameter,
and the forms are zoomed. all you have to do is edit your basejpi / basejini and the formsweb.cfg to pass
the clientDPI to the applet:

in basexyz:

<OBJECT classid="%jpi_classid%"

[...]
<PARAM NAME="clientDPI" VALUE="%clientDPI%">
[...]
<EMBED SRC="" PLUGINSPAGE="%jpi_download_page%"
[...]
clientDPI="%clientDPI%"

and in the formsweb.cfg in your config section:

[my_config]
clientDPI=120

If you don't want to specify it in the formsweb.cfg you can pass it directly to the forms servlet:


any help?
regards
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top