Created
December 20, 2012 14:04
-
-
Save rohinomiya/4345474 to your computer and use it in GitHub Desktop.
Excel VBA から、クリップボードにテキストをセットする ref: http://qiita.com/items/1b719bc90d7497688699
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim CB as Object | |
Set CB = new DataObject | |
With CB | |
.SetText "セットしたい文字列" | |
.PutInClipboard 'クリップボードに反映する | |
End With |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment