クリップボードの中身をファイルに出力
http://extstrg.asabiya.net/pukiwiki/index.php?%A5%AF%A5%EA%A5%C3%A5%D7%A5%DC%A1%BC%A5%C9%A4%CE%C3%E6%BF%C8%A4%F2%A5%D5%A5%A1%A5%A4%A5%EB%A4%CB%BD%D0%CE%CF目次
概要 †
クリップボードの中身をファイルに出力するスクリプト
コード †
Set IE = WScript.CreateObject("InternetExplorer.Application") IE.Navigate "about:blank" Set c =IE.Document.ParentWindow.ClipboardData d = c.getData("text") If IsNull(d) Then d ="" Set FSO = CreateObject("Scripting.FileSystemObject") '保存先 p = "C:\clip.txt" f = Replace(Date, "/", "") & ".txt" Set t = FSO.OpenTextFile(p & f,8,True) t.WriteBlankLines(1) t.WriteLine Time t.WriteLine d t.Close
Last-modified: 2009-07-06 (月) 16:11:34 (5575d)