Monthly Archives: 4月 2012

Windows Azure SDKのセットアップ(v1.6)

Windows Azure ダウンロード http://msdn.microsoft.com/ja-jp/windowsazure/cc974146 から 必要なものが 1 つにまとめられたパッケージをダウンロードする … Continue reading

Posted in 未分類 | Leave a comment

Excel Tips

文字コードがUTF-8なCSVの読みこみ テキストエディタなどでMS932に変換してから読み込むのが正攻法だが、単にエクセルで表示したいだけならファイル内容をコピーしてエクセルに貼り付けてから「データ>区切り位置」で変換 … Continue reading

Posted in Excel, Tips | Leave a comment

Excel VBA Tips

アクティブワークブックの存在するフォルダパス(¥なし) ActiveWorkbook.Path 画像貼り付け(ブック内に保存) シートオブジェクト.Shapes.AddPicture( _ Filename:=ファイルパ … Continue reading

Posted in Excel VBA, Tips | Leave a comment

数字とアルファベットの相互変換

Function Abc2Num(abc) Abc2Num = Range("$" & abc & "$1").Column End Function Function Num2Abc(num) Num2 … Continue reading

Posted in Excel VBA | Leave a comment

WordPressメモ

the_content() コンテンツの出力 get_the_content() コンテンツの取得 コンテンツ中、一番目の画像の取得(簡易) $thumbnail_url = false; $m = array(); p … Continue reading

Posted in WordPress | Leave a comment

flash textfield

backgroundColor と borderColor が同じ場合描画がおかしくなる。

Posted in 未分類 | Leave a comment