Search results for query: *

  • Users: stp
  • Order by date
  1. S

    Inherited textbox

    Inherited control (/Solved/) I found the solution looking at MSDN. Events in classes are to be declared Protected Overrides Sub OnValidated( …. And not Private Sub TextBox1_Validating( ……… ======= This effectively causes the textbox to behave as I desire Additionally, the clause...
  2. S

    Textbox, pressing return

    In my system, the return key has no effect on textboxes. I would like it to cause to pass the focus to the next entry control in the form Is there any way to achieve that? thanks
  3. S

    Inherited textbox

    I have tested all this stuff using an UserControl instead of a inherited textbox, and it seems to work maybe I would have to upgrade my VS2003 Pro to some Service Packs???
  4. S

    Inherited textbox

    thanks behaviour: having derived textboxes that behave the same way in events like "Validated", "Validating"... I will write the handlers for the inherited textbox. The forms (several dozens, say) containing the inherited controls will have NO CODE attached to it, because they will execute the...
  5. S

    Inherited textbox

    I am trying to use Inherited Controls to create textboxes derived from the standard one. Those textboxes will have different appearance and different behaviour (in the event handler). when using the Inherited textbox in a new form, I see the visual differences but it doesn't allow to type...
Back
Top