06 2016 档案
摘要:// Drives.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "windows.h" #include "string.h" #include "direct.h" #include "stdlib.h" char dir[260]; wchar_t* char2wchar(char *cStr) { size_t len...
阅读全文
摘要:1.正则表达式 function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if (r != null) return unescape(r[2]); return ...
阅读全文
摘要:HWND desktop,task; desktop=FindWindow(L"ProgMan",NULL); task=FindWindow(L"Shell_TrayWnd",NULL); ShowWindow(task,SW_HIDE);//隐藏任务栏 //ShowWindow(desktop,SW_HIDE);//隐藏桌面 HWND desktop,t...
阅读全文