2010/12/31

hello charset utf8

http://code.google.com/p/cowares-excel-hello/wiki/hello_charset_utf8
how to convert utf-8 and unicode at a low level in vba
VBAで utf-8 と unicode の低レベルな変換をする

bad integer

http://code.google.com/p/cowares-excel-hello/wiki/bad_integer
bad vba: be aware of dangerous integer constants
失敗マクロ: VBAの Integer 定数の危うさを知っておこう

2010/12/30

hello http get

http://code.google.com/p/cowares-excel-hello/wiki/hello_http_get
how to get texts and files from web using http in vba
VBAで http を使ってウェブからテキストやファイルを取得する

2010/12/29

hello charset euc jis sjis

http://code.google.com/p/cowares-excel-hello/wiki/hello_charset_euc_jis_sjis
how to convert euc-jp and iso-2022-jp to shift_jis at a low level in vba
VBAで euc-jp と iso-2022-jp を shift_jis に低レベルな変換をする

hello charset adodb stream

http://code.google.com/p/cowares-excel-hello/wiki/hello_charset_adodb_stream
how to read and write a text file encoded by verious character sets in vba
VBAでいろいろな文字コードセットのテキストファイルを読み書きする
特に日本語の、 Shift_JIS, euc-jp, iso-2022-jp 中心

bad iif

http://code.google.com/p/cowares-excel-hello/wiki/bad_iif
bad vba: no heavy works on iff
失敗マクロ: VBAの iif に重い仕事を与えるな

2010/12/28

hello timer

http://code.google.com/p/cowares-excel-hello/wiki/hello_timer
how to use the timer to make a background macro in vba
VBAのタイマーを使って、マクロをバックグラウンドで動かす

hello parser

http://code.google.com/p/cowares-excel-hello/wiki/hello_parser
how to parse a text stream in vba
VBAでテキストストリームを解析するパーサーを作る

2010/12/26

hello stream

http://code.google.com/p/cowares-excel-hello/wiki/hello_stream
how to create a class to act as a stream in vba
VBAでストリームの振る舞いをするクラスを作る

2010/12/25

ssf rw primitive

http://code.google.com/p/cowares-excel-hello/wiki/ssf_rw_primitive
a primitive tool to convert between an SSF text and an Excel Book
SSF テキストとエクセルブックの間を変換する、原始的なツール

2010/12/24

hello clipboard

http://code.google.com/p/cowares-excel-hello/wiki/hello_clipboard
how to use an windows clipboard in vba
VBAでウィンドウズのクリップボードを使う

tool bar buttons

http://code.google.com/p/cowares-excel-hello/wiki/tool_bar_buttons
add a cusomized toolbar (buttons) to your VBA macro
ツールバー(ボタン)付きの VBA マクロを簡単に作る

2010/12/23

ssf writer primitive

http://code.google.com/p/cowares-excel-hello/wiki/ssf_writer_primitive
a primitive tool to convert an Excel Book into an SSF text
エクセルブックを SSF テキストに変換する、原始的なツール

ssf reader primitive

http://code.google.com/p/cowares-excel-hello/wiki/ssf_reader_primitive
a primitive tool to convert an SSF text into an Excel Book
SSF テキストをエクセルブックに変換する、原始的なツール

2010/12/21

hello html dom

http://code.google.com/p/cowares-excel-hello/wiki/hello_html_dom
how to create a pseudo HTML DOM tree in vba
VBAでHTML DOMツリーっぽいものを作成する

2010/12/20

hello dom

http://code.google.com/p/cowares-excel-hello/wiki/hello_domhow to generate recursive elements like a DOM tree in vba
VBAでDOMツリーのように再帰的な階層モデルを実現する

hello class override

http://code.google.com/p/cowares-excel-hello/wiki/hello_class_override
how to override a user class in vba
VBAでユーザークラスのオーバーライドを実現する

2010/12/19

hello array fifo

http://code.google.com/p/cowares-excel-hello/wiki/hello_array_fifo
how to use FIFO arrays (queue) in vba
VBAでFIFO構造の配列(キュー)を使う 

hello array lifo

http://code.google.com/p/cowares-excel-hello/wiki/hello_array_lifo
how to use LIFO arrays (stack) in vba
VBAでLIFO構造の配列(スタック)を使う

hello array collection

http://code.google.com/p/cowares-excel-hello/wiki/hello_array_collection
how to use flexible arrays (collection) in vba
VBAで伸縮可能な配列(コレクション)を使う

2010/12/18

hello key value

http://code.google.com/p/cowares-excel-hello/wiki/hello_key_value
how to use key-value (hash) variables in vba
VBAで連想配列(ハッシュ変数)を使う