Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

If I have a propertygrid with the following 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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...