Close browser window on exit
672749Jan 27 2009 — edited Jun 8 2009Hi all,
been looking around on something about closing the browser window when i exit my forms application but nothing yet.
Have created a .html page with this code
*<html>*
*<body onload="closeit()">*
*<script language="JavaScript">*
*function closeit() {*
win = top;
win.opener = top;
win.close ();
*}*
*</script>*
*</body>*
*</html>*
have a post_form trigger with this code
begin
web.show_document('C:\close.html');
end;
browser isn't closed when i exit application.