トップ 差分 一覧 ping ソース 検索 ヘルプ PDF RSS ログイン

Excel VBA インターフェースを使う



目次



記事一覧

キーワード

Excel VBA インターフェースを使う

http://www.ncfreak.com/magazine/No.003/vb_class.html

Base.cls

Option Explicit

Public Function getName() As String
    getName = "base class"
End Function

Deliv.cls

Option Explicit
Implements Base

Private Function Base_getName() As String
    Base_getName = "derived class"
End Function

呼出

Dim b As Base
Set b = New Deliv
Debug.Print b.getName

結果

derived class


指定されたパートは存在しません。



YAGI Hiroto (piroto@a-net.email.ne.jp)
twitter http://twitter.com/pppiroto

Copyright© 矢木 浩人 All Rights Reserved.