vbs-toolkit VBSEdit 提供 免費(fèi)的COM組件
VBSCRIPT 語(yǔ)法簡(jiǎn)單 強(qiáng)大 但是功能上明顯不足 需要第三方的控制 e.g. COM 組件來(lái)擴(kuò)展其功能. VBSEDIT 安裝完之后就可以在安裝目錄下發(fā)現(xiàn) 免費(fèi)提供的 COM 組件 vbs toolkit.
下載 VBSEDIT 工具
32 位 DLL: vbsedit32 60 VBSEdit 提供
64 位 DLL: vbsedit64 61 VBSEdit 提供
注冊(cè)組件
注冊(cè)組件需要管理員權(quán)限. 可以運(yùn)行下面命令分別注冊(cè) 32, 64 位的VBSEDIT 工具箱.
regsvr32 vbsedit32.dll
regsvr32 vbsedit64.dll
注銷的時(shí)候則需要 加 /u 參數(shù)
regsvr32 /u vbsedit32.dll
regsvr32 /u vbsedit64.dll
提供了一些方便的功能擴(kuò)展 比如剪貼板.
Set toolkit = CreateObject("VbsEdit.Toolkit") toolkit.PutClipboardText "Hello World" WScript.Echo toolkit.GetClipboardText()
CLIPBOARD OPERATIONS
GetClipboardText method
1、獲取剪切板中的文本內(nèi)容
Set toolkit = CreateObject("VbsEdit.Toolkit") WScript.Echo toolkit.GetClipboardText()
PutClipboardText method
2、將指定內(nèi)容設(shè)置到剪切板中
Set toolkit = CreateObject("VbsEdit.Toolkit") toolkit.PutClipboardText "Hello World"
運(yùn)行后就將剪切板的數(shù)據(jù)設(shè)置為 Hello World
DIALOG BOXES
OpenFileDialog method
Prompt the user to open a file
toolkit.OpenFileDialog ([initialFolder,[filters,[multiselect,[title]]]])
'Opens a single file Set toolkit = CreateObject("VbsEdit.Toolkit") files=toolkit.OpenFileDialog("c:\scripts\","Text Files (*.txt)|*.txt",False,"Open a text file") If UBound(files)>=0 Then WScript.Echo files(0) Else Wscript.Quit End If 'Opens multiple files Set toolkit = CreateObject("VbsEdit.Toolkit") files=toolkit.OpenFileDialog("c:\scripts\","Text Files (*.txt)|*.txt",True,"Open a text file") If UBound(files)>=0 Then For Each filepath In files WScript.Echo filepath Next Else Wscript.Quit End If
上面的代碼就是打開只可以輸入一個(gè)文件的對(duì)話框,第二段就是可以選擇多個(gè)文件的對(duì)話框
SaveFileDialog method
Prompt the user to save a file
toolkit.SaveFileDialog ([initialFolder,[initialFilename,[filters,[title]]]])
Set toolkit = CreateObject("VbsEdit.Toolkit") filepath = toolkit.SaveFileDialog("c:\scripts","test.txt","Text Files (*.txt)|*.txt") If Not(IsNull(filepath)) Then Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.CreateTextFile(filepath,True) objFile.WriteLine Date objFile.Close Else Wscript.Quit End If
上面的代碼就是另存為 文本文件對(duì)話框
SelectFolder method
Prompt the user to select a folder
toolkit.SelectFolder ([initialDir,[title]])
Set toolkit = CreateObject("VbsEdit.Toolkit") myfolder=toolkit.SelectFolder("c:\scripts\","Please select a folder") If Not(IsNull(myfolder)) Then WScript.Echo myfolder Else Wscript.Quit End If
上面的就是瀏覽文件夾對(duì)話框
ENUMERATING WINDOWS
TopLevelWindows method
Enumerates top level windows
Set toolkit = CreateObject("VbsEdit.Toolkit") For each window in toolkit.TopLevelWindows() WScript.Echo window.WindowTitle WScript.Echo window.ProcessId Next
枚舉頂級(jí)窗口
Window object
ClassName
Retrieves the name of the class to which the specified window belongs.
WindowTitle
Retrieves the title of the specified window's title bar or the text of the control if the specified window is a control.
DlgCtrlID
Retrieves the identifier of the specified control.
Height
Retrieves the height of the specified window.
Width
Retrieves the width of the specified window.
X
Retrieves the X coordinate of the upper-left corner of the specified window.
Y
Retrieves the Y coordinate of the upper-left corner of the specified window.
IsVisible
Determines the visibility state of the specified window.
ProcessId
Retrieves the identifier of the process that created the specified window.
Click method
Sends a mouse click event to the specified window.
window.Click ([offsetX ,[offsetY]])
If offsetX and offsetY are not specified, the event is sent into the middle of the window.
SendText method
Sends text to the specified window.
window.SendText text
ChildWindows method
Enumerates the child windows that belong to the specified parent window.
–EOF (The Ultimate Computing & Technology Blog) —
上一篇:VBS數(shù)組深入淺出
欄 目:vb
本文標(biāo)題:vbs-toolkit VBSEdit 提供 免費(fèi)的COM組件
本文地址:http://mengdiqiu.com.cn/a1/vb/7121.html
您可能感興趣的文章


閱讀排行
- 1C語(yǔ)言 while語(yǔ)句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹的示例代碼(圣誕
- 3利用C語(yǔ)言實(shí)現(xiàn)“百馬百擔(dān)”問(wèn)題方法
- 4C語(yǔ)言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語(yǔ)言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語(yǔ)言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語(yǔ)言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 01-10下載文件到本地運(yùn)行的vbs
- 01-10飄葉千夫指源代碼,又稱qq刷屏器
- 01-10SendKeys參考文檔
- 01-10什么是一個(gè)高效的軟件
- 01-10VBS中的正則表達(dá)式的用法大全 &l
- 01-10exe2swf 工具(Adodb.Stream版)
- 01-10VBS中SendKeys的基本應(yīng)用
- 01-10用VBSCRIPT控制ONSUBMIT事件
- 01-10VBScript教程 第十一課深入VBScript
- 01-10VBScript語(yǔ)法速查及實(shí)例說(shuō)明
隨機(jī)閱讀
- 01-10delphi制作wav文件的方法
- 01-10使用C語(yǔ)言求解撲克牌的順子及n個(gè)骰子
- 01-11ajax實(shí)現(xiàn)頁(yè)面的局部加載
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 01-10C#中split用法實(shí)例總結(jié)
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 04-02jquery與jsp,用jquery