カメニッキ

カメとインコと釣りの人です

2012-02-01から1ヶ月間の記事一覧

Windowsにcheckbotをインストールする方法

old

主にメモとして残しておきます。 これまでCentOS環境で利用していましたが、いちいちVMwarePlayerを起動するのも面倒なのでWindowsに導入しました。 以下の手順で出来ると思います。1.http://www.activestate.com/activeperlより、ActivePerlを入手します。…

Excelで選択範囲を一括ハイパーリンク化するVBAマクロ

old

Sub url_set() oColumn = Selection.Column oRow = Selection.Row owidth = Selection.Columns.Count ohight = Selection.Rows.CountFor i = 0 To owidth - 1 For j = 0 To ohight - 1 setdata = Cells(j + oRow, i + oColumn) If setdata <> "" Then Cells(…