摘要: x86修改注册表:HKLM\Software\Microsoft\MicrosoftSQLServer\90\Tools\ShellSEM,把ShellSEM重命名即可。x64 HKLM\Software\Wow6432Node\Microsoft\MicrosoftSQLServer\90\Tools\ShellSEM 阅读全文
posted @ 2014-04-11 14:31 Taffy++ 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 一. SQL2008卸载。1.从控制面板卸载1)点击计算机右下角“开始”,点击“控制面板”2)点击“卸载程序”。3)在程序列表中找到“Microsoft SQL Server 2008”,右击 选“卸载”(或双击)。4)点击“删除”5)如上图,则重启计算机。 按上面的步骤,重新卸载。重启后,重新卸载,如下图。6)点击确定。7)下一步8)全选。点击“下一步”。下一步删除等待 可能需要办小时全部成功 ,下一步。关闭即可。二.卸载与2008相关组建,开始—控制面板—卸载程序。右击卸载。卸载完成后窗口自动消失。二. 删除磁盘里的安装文件(一般数据库默认安装在C盘) 路径“C:\Program File 阅读全文
posted @ 2014-04-10 21:49 Taffy++ 阅读(783) 评论(0) 推荐(0) 编辑
摘要: js代码块var xmlRequest;function getXMLRequestObject() { if (window.XMLHttpRequest) { //针对FireFox,Mozillar,opera,safari,IE7,IE8 xmlRequest = new XMLHttpRequest(); //针对某些特定版本的mozillar浏览器的bug修正 if (xmlRequest.overrideMimeType) { xmlRequest.overrideMimeType("text/xml") } } else if (window.ActiveX 阅读全文
posted @ 2012-12-28 10:58 Taffy++ 阅读(419) 评论(0) 推荐(0) 编辑
摘要: function PopBubble(caption, content, see,action) { this.content = content; this.caption = caption; this.see = see; this.action=action; this.width = 250; this.height = 165; this.timeout = 500; this.speed = 15; this.step = 2; this.right = screen.width - 18; this.bottom = screen.height; this.left = th. 阅读全文
posted @ 2012-12-28 10:27 Taffy++ 阅读(269) 评论(3) 推荐(0) 编辑
摘要: var myDate=new Date();var str="yyyy-MM-dd"; str=str.replace(/yyyy|YYYY/,myDate.getFullYear()); str=str.replace(/MM/,parseInt(myDate.getMonth())+1>9?(parseInt(myDate.getMonth())+1).toString():"0" + (parseInt(myDate.getMonth())+1).toString()); str=str.replace(/dd|DD/,myDate.getD 阅读全文
posted @ 2012-12-28 10:13 Taffy++ 阅读(232) 评论(0) 推荐(0) 编辑