Here is the script: <param name="shell" value="%Programfiles%\appletname\file.exe">
This command launches an application on the terminal server but in 640x480 resolution.
How can I specifiy a different window size for that applet?
Thank you.
Normally you can play with the following values:
width="640" height="480"
<param name="wt" value="800">
<param name="ht" value="560">
Good luck!
S.
I did try that, did not work. Here is the excerpt from my existing script:
<param name="name" value="ProperJavaRDP">
<param name="geometry" value="800x600">
<param name="align" value="top">
<!--
Please specify additional params here after the comment.
<param name="paramname" value="paramvalue">
-->
<param name="Server" value="<<HOST>>">
<param name="Port" value="<<PORT>>">
<param name="Username" value="<< user >>">
<param name="Password" value="<< password >>">
<param name="shell" value="%Programfiles%\appletname\file.exe">
<param name="width" value="800">
<param name="height" value="600">
</applet>
</body>
</html>
The size of the properjavardp window is controled by the "geometry" parameter. "wt" and "ht" entries at the bottom of the script doesn't seem to have any effect on the size of the applet.
Thank you very much for the suggestion though.
Alex