DISCLAIMER: The information and links provided on this site are my personal notes, based on my limited experience installing, using, and deinstalling Oracle databases and application servers on a variety of computers using Windows NT/2000/XP operating systems. The installation and deinstallation procedures found here can cause irreversible loss of data and may damage your operating system. However, you are welcome to use them AT YOUR OWN RISK. I am in no way responsible for data you lose or operating systems you damage or destroy.
When exiting a Forms application, which is an applet being run by a browser, the applet closes but the browser remains open. In some cases it may be desirable to close the browser along with the Forms applet.
<html>
<body onload="closeit()">
<script>
function closeit() {
win = top;
win.opener = top;
win.close (); }
</script>
</body>
</html>
webshow.document('close.html');
NOTE: You can call the .html file anywhere by using the webshow.document() function.