溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

VBScript設(shè)置和獲取剪切板內(nèi)容的方法

發(fā)布時間:2020-06-16 13:23:17 來源:網(wǎng)絡(luò) 閱讀:2123 作者:孤月2012 欄目:軟件技術(shù)

 Automation中經(jīng)常需要程序和剪切板交互,還在使用鍵盤一個一個input?內(nèi)容多的話,豈不是太慢了,使用剪切板的黏貼復(fù)制,so fast,so easy……具體需要調(diào)用Microsoft Forms 2.0 Object Library的對象和方法,用它輕松實現(xiàn)設(shè)置和獲取剪切板的內(nèi)容,下面寫了2個設(shè)置和獲取剪切板內(nèi)容的函數(shù),需要的時候直接調(diào)用~

 'operating clipboard
Function setClipboard(str)
    'setting clipboard's content
    Dim Form, TextBox
    Set Form = CreateObject("Forms.Form.1")
    Set TextBox = Form.Controls.Add("Forms.TextBox.1").Object
    TextBox.MultiLine = True
    TextBox.Text = str
    TextBox.SelStart = 0
    TextBox.SelLength = TextBox.TextLength
    TextBox.Copy
End Function
Function getClipboard
    'getting clipboard's content
    Dim Form, TextBox
    Set Form = CreateObject("Forms.Form.1")
    Set TextBox = Form.Controls.Add("Forms.TextBox.1").Object
    TextBox.MultiLine = True
    If TextBox.CanPaste Then
        TextBox.Paste
        getClipboard = TextBox.Text
    End If
End Function

 

 

更多方法參考鏈接:http://demon.tw/programming/vbs-clipboard.html

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI