JAVASCRIPT 获取 URL中的参数: function GetUrlParms() { var args=new Object(); var query=location.search.substring(1);//获取查询串 var pairs=query.split("&");//在逗号处...
编程
MFC 打印图片
MFC 实现打印图片功能,代码如下: BOOL PrintBitmap(LPCTSTR filename) { CPrintDialog printDlg(FALSE); // printDlg.GetDefaults(); if (printDlg.DoModal() == IDCANCEL) return FA...
VC生成隐藏 受保护的系统目录
VC生成隐藏 受保护的系统目录 /* add by laowu 20160904 */ TCHAR szPath[MAX_PATH]; ZeroMemory(szPath, MAX_PATH); SHGetSpecialFolderPath(NULL, szPath, CSIDL_APPDATA, FALSE); strcat(szPath, "...
vc常用到的一些函数
vc常用到的一些函数 #include <Shlwapi.h> #pragma comment (lib , "shlwapi.lib" ) #define nullptr NULL inline BYTE toHex(const BYTE &x) { return x > 9 ? x + 55: x + 48; } i...
Mono+Jexus部署asp.net mvc5.3报错
报错信息如下:Type not found: 'System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup,System.Web.WebPages.Razor,Version... 经过咨询一些群友,最后Mr. Seaning提出是Webpages大小写的问题...
VC创建快捷方式
VC创建快捷方式 //得到当前桌面路径 BOOL GetDesktopPath(TCHAR * pszDesktopPath) { LPITEMIDLIST ppidl = NULL ; if (SHGetSpecialFolderLocation(NULL , CSIDL_DESKT...
VC 获取软件安装列表
VC 获取软件安装列表 #include <comdef.h> #include <wbemidl.h> #pragma comment ( lib, "wbemuuid.lib") #include <string> using namespace std; void CdeltoolDlg ::GetSoftwareLi...
ANSI和UNICODE互转,微软提供,无BUG
ANSI和UNICODE互转,微软提供,无BUG。 来源:https://support.microsoft.com/en-us/kb/138813 /* * AnsiToUnicode converts the ANSI string pszA to a Unicode string * and returns the Unicode string...
Windows批处理查找并结束进程
Windows批处理查找并结束进程,查找进程名中包含Note的进程,并结束掉它 wmic Path win32_process Where "CommandLine Like '%%Note%%'" Call Terminate pause
PHP把\n换行符转成<br>
PHP把\n换行符转成<br>: nl2br('abc\ndef'); // 输出abc<br/>def 函数名的意思是 new line to br。
