VB/VBA のイベント(Event)

RaiseEvent したときの「呼び出し履歴」はつぎのような感じになる。

VBAProject.Class2.c1_FooEvent ← イベントハンドラー
[<非 Basic コード>]
VBAProject.ConClass1.Bar ←この中で RaiseEvent している。
VBAProject.Class2.Hoge
VBAProject.CommandButton1_Click

「[<非 Basic コード>]」が挟まることが特徴。