wndproc

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • DaveL

    wndproc

    How can i convert/cast a control.handle
    to its Object
    TextBox, combobox, etc


    thanks
    DaveL


  • Peter Duniho

    #2
    Re: wndproc

    On Wed, 08 Oct 2008 09:18:17 -0700, DaveL <dvs_bis@sbcglo bal.netwrote:
    How can i convert/cast a control.handle
    to its Object
    TextBox, combobox, etc
    If the handle is actually for a specific Control, you can use
    Control.FromHan dle(). Otherwise, it's not possible.

    Comment

    • DaveL

      #3
      Re: wndproc

      Thankyou very much peter

      DaveL

      "Peter Duniho" <NpOeStPeAdM@nn owslpianmk.comw rote in message
      news:op.uipxvbk 88jd0ej@petes-computer.local. ..
      On Wed, 08 Oct 2008 09:18:17 -0700, DaveL <dvs_bis@sbcglo bal.netwrote:
      >
      >How can i convert/cast a control.handle
      >to its Object
      >TextBox, combobox, etc
      >
      If the handle is actually for a specific Control, you can use
      Control.FromHan dle(). Otherwise, it's not possible.

      Comment

      Working...