2015-06-11から1日間の記事一覧

VBA/VBSでショートカットを作成する

Option Explicit Dim WSH,sc Set WSH=CreateObject("WScript.Shell") Set sc = WSH.CreateShortcut("C:\Documents and Settings\xxxx\デスクトップ\メモ帳.lnk") sc.TargetPath = "C:\WINDOWS\notepad.exe" sc.save Set sc = Nothing Set WSH = nothingネタ元…

ExcelのRTDセル更新間隔最速は2秒(デフォルトね)

Excel will not update RTD functions more frequently than every two seconds or so.翻訳 Excelは 2秒より頻繁にRTD関数を更新しません。 しかしExcelVBAから Application.RTD.ThrottleInterval = 1000とすれば間隔は1秒になるよ。これはレジストリ HKEY_C…