|
|
|
Click here to copy the following block |
Function GetMemberType(Object As Object, ByVal MemberName As String) As _ InvokeKinds Dim TLI As New TLIApplication Dim Interface As InterfaceInfo Dim Member As MemberInfo Set Interface = TLI.InterfaceInfoFromObject(Object) On Error GoTo ErrorHandler For Each Member In Interface.Members If StrComp(Member.Name, MemberName, vbTextCompare) = 0 Then GetMemberType = GetMemberType Or Member.InvokeKind Select Case Member.InvokeKind Case INVOKE_FUNC If Member.ReturnType.VarType <> VT_VOID Then GetMemberType = 256 Or INVOKE_FUNC End If Exit For Case INVOKE_PROPERTYGET, INVOKE_PROPERTYPUT, _ INVOKE_PROPERTYPUTREF GetMemberType = GetMemberType Or Member.InvokeKind Case Else GetMemberType = Member.InvokeKind Exit For End Select End If Next Exit Function
ErrorHandler: GetMemberType = 0 End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|