将WMI中的DateTime类型转换成VBS时间的函数代码
网络编程
有两种方法可以转换,一种是自己写个函数解析:
另一种是使用SWbemDateTime对象
Function WMIDateStringToDate(DateTime)
WMIDateStringToDate = _
CDate(Mid(DateTime, 5, 2) &_
"/" &_
Mid(DateTime, 7, 2) &_
"/" &_
Left(DateTime, 4) &_
" " &_
Mid (DateTime, 9, 2) &_
":" &_
Mid(DateTime, 11, 2) &_
":" &_
Mid(DateTime, 13, 2))
End Function
另一种是使用SWbemDateTime对象
Function WMIDateStringToDate(DateTime)
Set WbemDateTime = _
CreateObject("WbemScripting.SWbemDateTime")
WbemDateTime.Value = DateTime
WMIDateStringToDate = WbemDateTime.GetVarDate()
End Function
参考链接:It's About Time (Oh, and About Dates, Too)
原文:http://demon.tw/programming/wmi-datetime-vbs.html
vbs中将GB2312转Unicode的代码
今天写了一个类似于下面的程序:DimhttpSethttp=CreateObject("msxml2.xmlhttp")http.open"GET","http://www.sina.com.cn/",Falsehttp.sendWScript.Echohttp.responseText但是却发现返回的
VBS中的标识符(Identifiers)
VBS其实存在两种标识符:普通标识符(NORMALIDENTIFIER)中括号标识符(BRACKETIDENTIFIER)但是我看过的VBS书籍上都只讲了普通标识符,没有讲中括号标识符
VBS访问剪贴板的几种方法小结
SetIE=CreateObject("InternetExplorer.Application")IE.Navigate("about:blank")Setclipboard=IE.document.parentWindow.clipboardData'SetData设置剪切板的内容clipboard.SetData"text","忘记了,喜
编辑:一起学习网
标签:标识符,括号,两种,剪贴板,写了