|    
|
From: "KT" Subject: COM Comp. events and Reflection Date: Fri, 7 Jun 2002 13:32:06 -0700
| |
Hi Can i get list of events/Methods of any COM object using reflection. If yes how? I tried it with Word but does't works: tp = Type.GetTypeFromProgID("Word.Application") Dim et As EventInfo() = tp.GetEvents() Dim m As MethodInfo() = tp.GetMethods() Dim m1 As MethodInfo Dim ete As EventInfo For Each ete In et MsgBox(ete.Name) Next Says Length of array is zero. Will really appreciate help !! Thanks. KT
| | Post a follow up to this message... |
|  |
|