ChrisRChamberlain
Programmer
Hi all
Have an application that generates HTML output as a means of monitoring an application process, which subsequently displays in a webbrowser control on a form.
The user need to be viewing the last line of the HTML page each time a new page is created and the webbrowser control refreshed.
The following
followed by
at the bottom of the page works.
However this does require Javascript to be enabled.
Any alternatives. please?
TIA
PDFcommander.com
motrac.co.uk
Have an application that generates HTML output as a means of monitoring an application process, which subsequently displays in a webbrowser control on a form.
The user need to be viewing the last line of the HTML page each time a new page is created and the webbrowser control refreshed.
The following
Code:
<body onload="goBottom();">
<script type="text/javascript">
function goBottom() {
location.href = "test.html#bottom";
}
</script>
Code:
<span id="bottom"></span>
However this does require Javascript to be enabled.
Any alternatives. please?
TIA
FAQ184-2483
Chris PDFcommander.com
motrac.co.uk