New item in Propery Window

  • Thread starter Thread starter Chris, Master of All Things Insignificant
  • Start date Start date
C

Chris, Master of All Things Insignificant

I have a control that inherits from TextBox class. I'm trying to add a
AllowBlank property to the class. How can I get AllowBlank to show up in
the properties window at design time? Can't find the right key words to
find this in Google. Thanks guys.

Chris
 
Forget it guys. I didn't rebuild after adding the property so the designer
didn't know it existed yet. After the rebuild it worked fine. I can tell
it's Monday.

Chris
 
Chris said:
Forget it guys. I didn't rebuild after adding the property so the designer
didn't know it existed yet. After the rebuild it worked fine. I can tell
it's Monday.

Chris
You're way ahead of me.....I thought it was still Sunday.
 
Chris,

Chris said:
I have a control that inherits from TextBox class. I'm trying to add a
AllowBlank property to the class. How can I get AllowBlank to show up in
the properties window at design time?

\\\
Imports System.ComponentModel
..
..
..
<Browsable(True)> _
Public Property...
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top