home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <META http-equiv="Content-Type" content="text/html; charset=utf-8" >
- <!--
- ' ***
- ' *** ------------------------------------------------------------------------------
- ' *** Filename: SelectDrives.hta
- ' *** ------------------------------------------------------------------------------
- ' *** Description: SelectDrives tool to select the combination of drives
- ' *** ------------------------------------------------------------------------------
- ' *** Version: 1.0
- ' *** Notes:
- ' *** ------------------------------------------------------------------------------
- ' *** Copyright (C) Microsoft Corporation 2005, All Rights Reserved
- ' *** ------------------------------------------------------------------------------
- ' ***
- -->
- <title> </title>
-
- <script id="Common" language="VBScript" src="include/Common.vbs"></script>
- <script id="libHTA" language="vbscript" src="include/libHTA.vbs"></script>
- <script id="clsLogging" language="vbscript" src="include/clsLogging.vbs"></script>
- <script id="SelectDrives" language="vbscript" src="include/SelectDrives.vbs"></script>
-
- <link rel="stylesheet" type="text/css" href="css/hta.css">
-
- <hta:application ID="oImagine"
- APPLICATIONNAME="SelectDrives"
- CAPTION="yes"
- CONTEXTMENU="yes"
- BORDER="dialog"
- ICON="graphics/UserProfiles.ico"
- INNERBORDER="no"
- MAXIMIZEBUTTON="no"
- MINIMIZEBUTTON="no"
- NAVIGABLE="no"
- SCROLL="no"
- SELECTION="no"
- SHOWINTASKBAR="yes"
- SINGLEINSTANCE="yes"
- SYSMENU="yes"
- VERSION="1.00"
- WINDOWSTATE="normal" />
-
- <!-- settings and resources -->
- <div id="settings" style="display:none">
- <p id="appTitle">Select Drives to Restrict</p>
-
- <span id="resAdminOnly">NO</span>
- <span id="resWGAOnly">NO</span>
- <span id="resDomainWarning">NO</span>
- <span id="resCloseButton">NO</span>
- </div>
- </head>
-
- <body id="oBody" onload="DrivesMain()" OnKeyDown = "HTAKeyDown()" OnKeyUp = "KeyUp()" >
-
- <label id="title"></label>
-
- <P id="_locSummary" style="padding:5px">Select which drives should not appear within My Computer in Windows Explorer</p>
-
- <table>
- <THEAD align=center><tr>
- <td style="width:100px"><P id="_locUnrestricted"><b>Listed</b></P></td>
- <td></td>
- <td><P id="_locRestricted"><b>Restricted</b></p></td>
- </tr></THEAD>
-
- <TBODY align=center><tr valign=top>
- <td><div style="width:3.5em;height:11.6em;overflow:auto;background-color:white;color:black;">
- <table id=tLeft ondblclick = "OnDoubleclick()"></table>
- </div></td>
-
- <td>
- <ID id="_locRestrictAll"><button class=normal id="btnRestrictAll" style="width:100px" onclick="RestrictAll()">Restrict All</button></ID><br><br style="line-height:5px">
- <button class=normal id="btnMoveRight" style="width:100px" class="normalbutton" onclick="MoveRight()" ><b>--></b></button><br><br style="line-height:5px">
- <button class=normal id="btnMoveLeft" style="width:100px" class="normalbutton" onclick="MoveLeft()" ><b><--</b></button><br><br style="line-height:5px">
- <ID id="_locClearAll"><button class=normal id="btnClearAll" style="width:100px" onclick="ClearAll()">List All</button></ID><br><br style="line-height:5px">
- <ID id="_locOKText"><button id=btnFinish ATOMICSELECTION=True style="width:100px" class=finishDrive Title="OK" onclick="CloseOK()" onmouseover="Highlight btnFinish, True" onmouseout="Highlight btnFinish, False"><img align="absmiddle" src="graphics/green1.gif"> OK</button></ID>
- </td>
-
- <td><div style="width:3.5em;height:11.6em;overflow:auto;background-color:white;color:black;">
- <table id=tRight valign=top ondblclick = "OnDoubleclick()"></table>
- </div></td>
- </tr></TBODY>
- </table>
-
- </body>
- </html>
-