⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 delete_virtual_hard_drive_step_1.htm

📁 vc-mfc编程实例 很简单的东西,以后回多传自己的东西
💻 HTM
字号:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Create Audio CD</title>

<link href="css/main.css" rel="stylesheet" type="text/css">
</head>
<script language="javascript" src="js/comm.js" type="text/javascript"></script>
<script language="javascript">
// import js document
	_import("function");
	//_import("main_only");
	_import("language");
	_import("langSet");
	_import("webmenuevent");
	_import("control");
</script>
<body onKeydown="event.returnValue=disableBack();" >
<table width="540" height="495" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td align="center" valign="top"><table width="509" height="412" border="0" cellpadding="0" cellspacing="0" style="margin-top:41px;">
      <tr>
        <td valign="top"><table width="509" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="509">
			<div id="del_vhd_title" class="PageTitle">
			Remove Virtual Hard Drive
			</div></td>
          </tr>
          <tr>
            <td style="padding-top:7px;"><img src="img/CreateAudioCD_02.jpg" width="507" height="1"></td>
          </tr>
          <tr>
            <td class="PageText" style="padding-top:15px;">
			<div id="del_vhd_info1">
			In order to successfully remove the Virtual Hard Drive from the current system, please make sure the Virtual Hard Drive is not being accessed before you click the button below.
			</div>
			
			<!--<div id="delinfowait" style="display:none;">
			<table border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td><img src="images/running.gif" width="21" height="21"></td>
                <td><span class="PageStep" style="padding-top:10px;">&nbsp;&nbsp;Virtual Hard Drive is being Removed, Please wait...</span></td>
              </tr>
            </table>
			</div>-->
			</td>
          </tr>
          <tr>
            <td height="80" align="center" valign="bottom">
			<div id="delnowbutton">
			<button cstyle="rit" onClick="btn_del();" id="savenow">Delete Now</button>
			</div>
			<!--<img src="img/DeleteVirtualHardDrive_02.jpg" width="84" height="20">--></td>
          </tr>
        </table></td>
      </tr>
    </table></td>
  </tr>
</table>
<script>
var driver;
var imgname;
var objcom = new ActiveXObject("VHDCom.VHDInterface.1");
var hasvhd=false;
document.body.onload=function()
{
	applyButton();
	showui();
	driver=objcom.GetCurVHDDisk();
	if(driver>0 && driver<26)
	{
		$("savenow").dsiabled=false;
		hasvhd=true;
	}
	else
	{
		//$("savenow").dsiabled=true;
		//$("del_vhd_info1").innerHTML='There is no Virtual Hard Drive in the current system! So Remove Virtual Hard Drive feature is disabled before Virtual Hard Drive is created.';
		$("del_vhd_info1").innerHTML=GS("del_vhd_info1");
		$("savenow").setValue(GS("button_returnmain"));
	}
}
function btn_del()
{
	//$("delinfo").style.display="none";
	//$("delinfowait").style.display="";
	
	//$("delnowbutton").innerHTML="&nbsp;";
	
	//setTimeout("action()",1000);
	if(hasvhd==true)
	{
		document.location="Remove_Virtual_Hard_Drive.htm";
	}
	else
	{
		top.menuFocus(1);
		//document.location="Main_Quick_Start_1.htm";
	}
	
}
function jump()
{
	//alert("go");
	document.location="Remove_Virtual_Hard_Drive_step_2.htm";
}
function action()
{
	parent.maskLeftMenu();
	objcom.RemoveDisk();
	parent.demaskLeftMenu();
	setTimeout("jump()",200);
}
function showui()
{
	$("del_vhd_title").innerHTML=GS("del_vhd_title");
	$("del_vhd_info1").innerHTML=GS("del_vhd_info1");
	$("savenow").setValue(GS("button_del"));
}
</script>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -