Dear Experts
I want to create a webpage in VB2005 which is when opened in a browser in Windows it should scroll down automatically till the bottom of the page. Can anyone give gecko vb2005 example for similar page?
Can anyone give gecko vb2005 example auto scroll page
Using the Examples
Many of the examples during this reference are complete files that you'll execute by cutting and pasting them into a replacement file, that you'll then open in your browser.
Others are snippets. You'll run them later by putting them inside JavaScript recall functions.
For instance, this window. document property example is often tested in a perfume. Here, it's known as by a button's onclick attribute:
<html>
<head>
<title>Test Page</title>
<script type="text/javascript">
function testWinDoc() {
Â
  var doc= window.document;
Â
  alert(doc.title);
Â
}
</script>
</head>
Â
<body>
  <button onclick="testWinDoc();">test document property</button>
</body>
</html>
Â