View Single Post
  #9 (permalink)  
Old 03-16-2009, 11:29 AM
chahkuehtiao chahkuehtiao is offline
VB.NET Forum Newbie
.NET Framework: .NET 2.0 (VS 2005)
 
Join Date: Mar 2009
Age: 23
Posts: 4
Reputation: 0
chahkuehtiao is on a distinguished programming path ahead
Default

Quote:
Originally Posted by InertiaM View Post
I'll start you off.

Code:
    Private Function CreatePropertyItem() As PropertyItem
        Dim ci As System.Reflection.ConstructorInfo = GetType(PropertyItem).GetConstructor(BindingFlags.NonPublic Or BindingFlags.Instance Or BindingFlags.Public, Nothing, New Type() {}, Nothing)
        Return DirectCast(ci.Invoke(Nothing), PropertyItem)
    End Function
Now you should be able to program or Google the rest
ok, thanks. I'll try it.
Reply With Quote