WIN8 错误代码:720

来源:http://tieba.baidu.com/p/3261639822

在系统运行中使用 CMD 打开命令行模式。
使用REGEDIT 打开注册表编辑器。
找到以下注册表子项:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}
请逐个查找每个子项,找到在右侧“DriverDesc”值数据为 “WAN微型端口(网络监视器)”的子项。(同理找到IP,IPV6)
将每个找到的子项中的“Characteristics” 值数据从29修改为9。(注意你要找到3个进行修改,因为你有三个感叹号)
此时,在系统设备管理器中就可以将问题项卸掉了。
再点击扫描,感叹号消失,拨号错误720也没有了

注:可能需要重启

解决 Windows 10 强制安装更新问题

Windows10不再允许关闭系统自动更新,也不允许选择是否更新微软提供的硬件驱动程序。
这造成了很多用户升级到Windows10,安装好驱动后(尤其显卡),不一会就被自动更新推送的驱动程序替换成微软的版本,让人烦恼。
事实证明,高级系统设置->系统属性->硬件->设备安装设置,”从不安装来自Windows更新的驱动程序软件“选项,不能有效阻止自动安装。
好在微软为有需要禁止自动更新的用户,提供了单独的工具。

解决方法:

1、(如果要隐藏的更新已经安装,需要先卸载该更新并重新启动计算机)
2、下载文章末尾的工具。如图所示,运行该工具,勾选需要隐藏的更新,一路下一步即可。

Show or Hide updates

傲游截图20150930232535

傲游截图20150930233038

傲游截图20150930235123
Show or Hide updates

相关页面:https://support.microsoft.com/en-us/kb/3073930
软件地址:http://download.microsoft.com/download/F/2/2/F22D5FDB-59CD-4275-8C95-1BE17BF70B21/wushowhide.diagcab

Java (Android) 学习笔记

(以下内容为AIDE)

数据类型有关
System.out.println(“Result: “+3.1415+2)  //Result: 3.14152
System.out.println(“Result: “+(3.1415+2))
//Result: 5.141500000000001
System.out.println(“Result: “+(3.1415F+2F))
//Result: 5.1415
System.out.println(“Result: “+(3/2))
//Result: 1
System.out.println(“Result: “+(3.0/2.0)
//Result: 1.5
System.out.println(“Result: “+(3F/2F)
//Result: 1.5

类型转换
String.valueOf(); //

设置输入法类型
editText.setInputType(EditorInfo.*);

设置焦点(下列三个属性必须同时设置)
editText.setFocusable(true);   
editText.setFocusableInTouchMode(true);
editText.requestFocus();

【解决方案】iebook黑屏怎么办? Zmaker 出错怎么办?

【 解决方案 】iebook黑屏怎么办
【 解决方案 】iebook黑屏怎么办

近期有不少网友出现打开iebook程序出现黑屏或打开Zmaker出错的问题。追根溯源,都是Adobe惹的祸——最新版的Adobe Flash Player 18版本存在Bug导致(截止18.0.0.160无此问题) 。现给出解决方案——卸载18版本,安装17旧版或更新的19版

继续阅读【解决方案】iebook黑屏怎么办? Zmaker 出错怎么办?

【iebook 超级精灵系列教程 2】制作片头

最近在群里看到有些人问如何让自己制作的flash片头在iebook里居中显示。印象中官方提供的帮助文档有说明的。

经过试验,个人觉得官方的制作介绍有些不清楚、不完善的地方,所以就自己写一篇供大家参考。如果有什么疏漏,请不吝赐教。: )

继续阅读【iebook 超级精灵系列教程 2】制作片头

修正 Hotel Booking 主题

最近需要制作一个酒店网站,好不容易找到了一个wordpress的主题——Hotel Booking。安装试用了下,感觉都不错。只是虽然找了汉化版1.0.1的主题包,但是有些地方仍然是乱码,在百度了相关错误信息(Warning: #1366)后,得出需要修改数据库里的编码(参阅这里)。觉得网上关于这方面的文章有点少,特此记录下。

打开phpMyAdmin,进入wp_hotel_info_master等表,将如下内容的排序规则改为utf8-general-ci即可。

wp_hotel_info_master 表结构
wp_hotel_info_master 表结构

VB.NET 学习笔记

Visual Studio LOGO
Visual Studio LOGO

‘数组相关
dim 数组长度 as integer=12
dim 数组(数组长度-1) as byte() ‘数组长度-1:为数组下标最大值
msgbox(数组.length) ’12

‘如何让文本框自动滚动
textbox1.appendtext(“test”)
textbox1.scrolltocaret()

‘让listviewItem可见
Listview.FindItemWithText(“test”).EnsureVisible()

‘鼠标坐标
System.Windows.Forms.Cursor.Position
Control.MousePosition

‘权限
Imports System.Security.Principal

Module 权限
Public Function 是否为管理员()
Dim identity As WindowsIdentity = WindowsIdentity.GetCurrent()
Dim principal As WindowsPrincipal = New WindowsPrincipal(identity)
Return principal.IsInRole(WindowsBuiltInRole.Administrator)
End Function
End Module

限制 DataGridView 某列只能输入数字(参考这里

 Private Sub TextBoxDec_KeyPress(sender As Object, e As KeyPressEventArgs)
        If e.KeyChar <> "8" And Not Char.IsDigit(e.KeyChar) And e.KeyChar <> "." Then
            e.Handled = True
        End If
    End Sub
    Private Sub DataGridView1_EditingControlShowing(sender As Object, e As DataGridViewEditingControlShowingEventArgs) Handles DataGridView1.EditingControlShowing
        Dim columnIndex As Integer = 4
        If DataGridView1.CurrentCell.ColumnIndex = columnIndex Then
            AddHandler e.Control.KeyPress, AddressOf TextBoxDec_KeyPress
        Else
            RemoveHandler e.Control.KeyPress, AddressOf TextBoxDec_KeyPress
        End If

        Me.Text = DataGridView1.CurrentCell.ColumnIndex.ToString
    End Sub

    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles Me.Load
        DataGridView1.EditMode = DataGridViewEditMode.EditOnEnter
    End Sub

获取当前程序路径及程序名
Application.ExecutablePath

获取程序启动参数(注:参数前后有双引号)
dim para as String=Microsoft.VisualBasic.Command