Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools


Click here to copy the following block
' Return the value of the public field with the specified name,
' defined inside the obj object
' Note: requires Imports System.Reflection
'
' Example:
'  Public TestField As String = "hello"
'  ...
MessageBox.Show(GetField(Me, "TestField", ""))

Function GetField(ByVal obj As Object, ByVal fieldName As String, _
  ByVal defaultValue As Object) As Object
  Try
    ' try with a field first
    Dim fi As FieldInfo = obj.GetType().GetField(fieldName, _
      BindingFlags.Instance Or BindingFlags.Public Or _
      BindingFlags.NonPublic)
    If Not fi Is Nothing Then
      Return fi.GetValue(obj)
    End If
    ' else, try with a property (VB implements many form fields as
    ' properties)
    Dim pi As PropertyInfo = obj.GetType().GetProperty(fieldName, _
      BindingFlags.Instance Or BindingFlags.Public Or _
      BindingFlags.NonPublic)
    If Not pi Is Nothing Then
      Return pi.GetValue(obj, Nothing)
    End If
  Catch
  End Try

  ' if property doesn't exist or throws
  Return defaultValue
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 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.