Search results for query: *

  1. A

    hiding a property ::

    Here is my situation: I have a control inherited from MaskedTextBox. I added a property called Value. I want the users of this new control to use the Value property and not use the Text property when setting a new value to this control. Therefore my intention is to hide the Text property from...
  2. A

    DateTimePicker is horrible !!!

    I'm currently writing an application for some very picky clients in VB.NET 2005. In order to fulfill one of the requirements, I need to be able to have specific control over the DateTimePicker control. Here is the issue: When using the arrow keys or mouse inside the DateTimePicker , you'll...
  3. A

    :: Nested Control does not save its properties ::

    Here's what I found... Actually, I was able to find out about this, and it almost works entirely :) Imports System.ComponentModel ... <DesignerSerializationVisibility(DesignerSerializationVisibility.Content)> _ Public ReadOnly Property NestedControl() As Control Get...
  4. A

    :: Nested Control does not save its properties ::

    Here's my situation: I have a Custom Control inherited from UserControl. Within this class, i have the following declaration: Private m_ctlNestedControl As Control Then I delcare a property as such: Public ReadOnly Property NestedControl() As Control Get...
Back
Top