Is there some interface I have to implement to make a custom control recieve
focus (and be recognized as recieving focus)?

Thanks everyone.

--
===
Phil
(Auckland | Aotearoa)

Re: Custom Focus by Claes

Claes
Fri Nov 05 02:42:30 CST 2004

See the docs for the Control.Focus method for a list
of things that a control must fulfil in order to receive
input focus. Basically the ControlStyles.Selectable style bit
must be true and the control must be enabled and visible

/claes


"Phil Jones" <phil_newsgroup@hotmail.com> wrote in message
news:egEPjywwEHA.1976@TK2MSFTNGP09.phx.gbl...
> Is there some interface I have to implement to make a custom control
recieve
> focus (and be recognized as recieving focus)?
>
> Thanks everyone.
>
> --
> ===
> Phil
> (Auckland | Aotearoa)
>
>



Re: Custom Focus by Phil

Phil
Fri Nov 05 02:58:27 CST 2004

Sweet - thanks Claes.


"Claes Bergefall" <claes.bergefall@online.nospam> wrote in message
news:ez40kNxwEHA.1296@TK2MSFTNGP10.phx.gbl...
> See the docs for the Control.Focus method for a list
> of things that a control must fulfil in order to receive
> input focus. Basically the ControlStyles.Selectable style bit
> must be true and the control must be enabled and visible
>
> /claes
>
>