濮阳杆衣贸易有限公司

主頁 > 知識庫 > vbs-toolkit VBSEdit 提供 免費的COM組件

vbs-toolkit VBSEdit 提供 免費的COM組件

熱門標簽:地圖標注政府哪個部門管 齊齊哈爾高德地圖標注店 如何用機器人進行電銷 佛山真人電銷機器人廠家 東營快遞外呼系統(tǒng) 百度地圖標注點距離代碼 神行者美術館地圖標注 除了地圖標注還有這種生意嗎 哪里有便宜的地圖標注公司

VBSCRIPT 語法簡單 強大 但是功能上明顯不足 需要第三方的控制 e.g. COM 組件來擴展其功能. VBSEDIT 安裝完之后就可以在安裝目錄下發(fā)現(xiàn) 免費提供的 COM 組件 vbs toolkit.

下載 VBSEDIT 工具

32 位 DLL: vbsedit32 60 VBSEdit 提供
64 位 DLL: vbsedit64 61 VBSEdit 提供

注冊組件

注冊組件需要管理員權限. 可以運行下面命令分別注冊 32, 64 位的VBSEDIT 工具箱.

regsvr32 vbsedit32.dll
regsvr32 vbsedit64.dll

注銷的時候則需要 加 /u 參數(shù)

regsvr32 /u vbsedit32.dll
regsvr32 /u vbsedit64.dll

提供了一些方便的功能擴展 比如剪貼板.

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)容設置到剪切板中

Set toolkit = CreateObject("VbsEdit.Toolkit")
toolkit.PutClipboardText "Hello World"

運行后就將剪切板的數(shù)據(jù)設置為 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

上面的代碼就是打開只可以輸入一個文件的對話框,第二段就是可以選擇多個文件的對話框

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

上面的代碼就是另存為 文本文件對話框

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

上面的就是瀏覽文件夾對話框

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

枚舉頂級窗口

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) —

您可能感興趣的文章:
  • 記逆向小白的第一次vbsedit 9爆破及內(nèi)存補丁制作過程

標簽:湖州 邢臺 鶴壁 ???/a> 文山 西安 銅川 四平

巨人網(wǎng)絡通訊聲明:本文標題《vbs-toolkit VBSEdit 提供 免費的COM組件》,本文關鍵詞  vbs-toolkit,VBSEdit,提供,免費,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《vbs-toolkit VBSEdit 提供 免費的COM組件》相關的同類信息!
  • 本頁收集關于vbs-toolkit VBSEdit 提供 免費的COM組件的相關信息資訊供網(wǎng)民參考!
  • 推薦文章
    五指山市| 平山县| 同心县| 阜城县| 奉节县| 仙桃市| 石首市| 高淳县| 卢龙县| 贵港市| 伊金霍洛旗| 南投市| 临高县| 湘潭县| 龙里县| 保康县| 中卫市| 牙克石市| 阿合奇县| 洪江市| 泗水县| 梨树县| 类乌齐县| 宝应县| 濉溪县| 治县。| 汶上县| 交口县| 玉树县| 锦屏县| 新丰县| 呼伦贝尔市| 农安县| 南涧| 那曲县| 江门市| 土默特右旗| 民勤县| 大石桥市| 岳阳市| 醴陵市|