Question:
How can I disable the scrollbar of an application’s screen on the Internet Explorer when using the WebViewer?
Solution:
To do so, you must edit the e3web2.asp file:
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
< html xmlns="http://www.w3.org/1999/xhtml" >
< head >
< title >< /title >
< /head >
< style type="text/css" >
html {
overflow: hidden;
}
< /style >
< body style="margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;" >
< script type="text/javascript" src="docwrite2.asp" >< /script >
< /body >
< /html >