Script2EXE Home How to Use Interface Buy Support Site Home

EnableShellTray - A Sample Programm Created with Script2EXE


HTML Source
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Developer Studio">
<META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>EnableShellTray Sample</TITLE>
<SCRIPT LANGUAGE="JavaScript">
function InitShellTray()
{
if(window.external.SHW)
{
    window.external.EnableShellTray("A14.ico", "EnableShellTray Sample", false);
}
}
</script>
</HEAD>

<BODY onload="InitShellTray()">

<h3>EnableShellTray Sample</h3>
<hr>
<UL>
<LI>Click the [Close] button on the Application Title Bar, the program will hide its window, not exit.
<li>Click the shell tray icon, the program will show its window again.
<li>You can also right click the shell tray icon to select a menu command.
</ul>


</BODY>
</HTML>