Propertygrid help...

lidds

Junior Contributor
Joined
Nov 9, 2004
Messages
210
If I have a propertygrid with the following code:
Code:
    <CategoryAttribute("Application"), _
   Browsable(True), _
   [ReadOnly](False), _
   BindableAttribute(False), _
   DefaultValueAttribute(""), _
   DesignOnly(False), _
   DescriptionAttribute("Enter Title for the application")> _
Public Property Title() As String
        Get
            Return _Title
        End Get
        Set(ByVal Value As String)
            _Title = Value
        End Set
    End Property

This code gives me a property called Title that allows me to enter any text into. The problem I am having is that I don't know how to query (know) what the user has entered.

Does anyone have any idea how I can to this in vb.net?

Cheers

Simon
 
Back
Top