
03-16-2009, 11:29 AM
|
|
VB.NET Forum Newbie
.NET Framework: .NET 2.0 (VS 2005)
|
|
Join Date: Mar 2009
Age: 23
Posts: 4
Reputation: 0
|
|
Quote:
Originally Posted by InertiaM
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.
|