2005-09-14から1日間の記事一覧

メモ

明日ためす RGB を挿入するアドイン(VC6用) VS.NET用のはないので色選択ツールを外部ツールに設定するかな http://www.codeguru.com/Cpp/V-S/devstudio_macros/add-ins/article.php/c6007/ ビルドナンバーをインクリメントするマクロ http://www.codeproject…

Kings tool

VisualStudio アドイン Kings tool の functionheadertop.txt とかは UTF-8 で書いておかないと日本語は通らないようだ。

VisualStudio キーバインド一覧

http://weblogs.asp.net/rosherove/archive/2003/10/02/30136.aspx

Cygwin 上の vim で VisualStudio ソリューションをビルドする

vim

ビルドしてクイックフィックスしたいのでスクリプトを書いてみた。 #!/bin/bash if [ "$2" == "" ]; then configuration=Debug else configuration="$2" fi ~/bin/devenv $1 /build $configuration | sed -e 's@c:\\@/cygdrive/c/@' -e 's@\\@/@g' -e 's@(\(…