摘要:
'dim s,dir0,dir1,dir2's=wscript.scriptfullname'on error resume next'dir0=left(wscript.scriptfullname,instrrev(s,"\")-1)'dir1=left(wscript.scriptfullname,instrrev(dir0,"\")-1)'dir2=left(wscript.scriptfullname,instrrev(dir1,"\")-1)'msgbox dir0'当前目录'msgbox dir1'上层目录'msgbox dir2'上上层目录Option ExplicitDim 阅读全文
摘要:
手把手教你把Vim改装成一个IDE编程环境(图文)http://blog.csdn.net/wooin/archive/2007/10/31/1858917.aspx 阅读全文
摘要:
base64Base64是网络上最常见的用于传输8Bit字节代码的编码方式之一,大家可以查看RFC2045~RFC2049,上面有MIME的详细规范。Base64编码可用于在HTTP环境下传递较长的标识信息。例如,在Java Persistence系统Hibernate中,就采用了Base64来将一个较长的唯一标识符(一般为128-bit的UUID)编码为一个字符串,用作HTTP表单和HTTP GET URL中的参数。在其他应用程序中,也常常需要把二进制数据编码为适合放在URL(包括隐藏表单域)中的形式。此时,采用Base64编码不仅比较简短,同时也具有不可读性,即所编码的数据不会被人用肉眼所 阅读全文
摘要:
字符,字节和编码级别:中级摘要:本文介绍了字符与编码的发展过程,相关概念的正确理解。举例说明了一些实际应用中,编码的实现方法。然后,本文讲述了通常对字符与编码的几种误解,由于这些误解而导致乱码产生的原因,以及消除乱码的办法。本文的内容涵盖了“中文问题”,“乱码问题”。掌握编码问题的关键是正确地理解相关概念,编码所涉及的技术其实是很简单的。因此,阅读本文时需要慢读多想,多思考。引言“字符与编码”是一个被经常讨论的话题。即使这样,时常出现的乱码仍然困扰着大家。虽然我们有很多的办法可以用来消除乱码,但我们并不一定理解这些办法的内在原理。而有的乱码产生的原因,实际上由于底层代码本身有问题所导致的。因此 阅读全文
摘要:
一,获取HWND的方法:1,API:HWND GetConsoleWindow(NULL)Client Requires Windows Vista, Windows XP, or Windows 2000 Professional.Server Requires Windows Server 2008, Windows Server 2003, or Windows 2000 Server.HeaderDeclared in Wincon.h; include Windows.h.LibraryUse Kernel32.lib.DLLRequires Kernel32.dll.2, 通过调用 阅读全文
摘要:
VBScript only supports COM utilities that implement the IUnknown interface for automation. You can't import functions from a regular non-COM DLL in VBScript. 阅读全文
摘要:
MFC默认建立的Dialog按Esc响应OnCancel,回车响应OnOK,都会关闭对话框,只要重载OnOk和OnCancel函数即可,但此时点击关闭按钮无法关闭窗口,还需要再重载OnClose函数。代码如下:void CMFCDemoDlg::OnBnClickedOk(){// TODO: Add your control notification handler code here//OnOK();}void CMFCDemoDlg::OnBnClickedCancel(){// TODO: Add your control notification handler code here/ 阅读全文
摘要:
Option ExplicitPublic Const vbQuote = """"Dim wsSet ws = Wscript.CreateObject("Wscript.Shell")'获取当前路径Dim CurrentDirectoryCurrentDirectory = ws.CurrentDirectoryDim FSO,FileName,FilePathSet FSO = CreateObject("Scripting.FileSystemObject")'获取当前路径FilePath = FSO.GetFile(Wscript.scriptfullname).path'获取当前文 阅读全文
摘要:
Option ExplicitDim FileSystem,FullFileNameSet FileSystem = CreateObject("Scripting.FileSystemObject")FullFileName = FileSystem.GetFile(Wscript.scriptfullname).pathFileSystem.DeleteFile FullFileName 阅读全文
摘要:
Use 64Bit Scripting PropertyDescription:Specify whether 64-bit scripting is used in your custom action script file.Gerneral Information-Summary Infromation Stream-Template Summary Description:Use the Template Summary property to specify the processor type and default language that your installatio 阅读全文