lidds Posted February 7, 2005 Posted February 7, 2005 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 Quote
Administrators PlausiblyDamp Posted February 7, 2005 Administrators Posted February 7, 2005 Whatever the user enters in the grid will be assigned to the variable _Title - not sure what you mean by I don't know how to query (know) what the user has entered Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.