在Win10预览版9901中,任务栏的搜索框是默认可见的。其中的默认文字Search the Web and Windows时间一长容易引起审美疲劳,所以我们可以尝试将其修改为自己喜欢的文字。 修改方式需要通过注册表操作,所以在改动之前最好用备份一下注册表,以防万一。 具体步骤如下: 1、在开始菜单搜索栏或者运行中输入regedit后回车,打开注册表编辑器。 2、定位到HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurr...[ 查看全文 ]
Declare Function FindWindow Lib "user32" Alias "FindWindowA" _ (ByVal lpClassName As String, ByVal lpWindowName As String) As LongDeclare Function ShowWindow Lib "user32" Alias "ShowWindow" _ (ByVal hwnd As Long, ByVal nCmdShow As Long) As LongPublic Const SW_SHOW = 5Public Const SW_HIDE = 0Private hwnd5 as Longhwnd5 = FindWindow(...[ 查看全文 ]