Home All Groups Group Topic Archive Search About

NumericUpDown Control

Author
29 Jan 2006 9:28 PM
S Shulman
Hi

All I want to do is to highlight all text within the numeric up down control
Using the Select method only sets the cursor in the control

Thank you,
Shmuel Shulman
SBS Technologies LTD

Author
29 Jan 2006 9:51 PM
Rocky
NumericUpDown1.Focus()
NumericUpDown1.Select(0, NumericUpDown1.Value.ToString.Length)


Show quoteHide quote
"S Shulman" <smshul***@hotmail.com> wrote in message
news:OCiimrRJGHA.344@TK2MSFTNGP11.phx.gbl...
> Hi
>
> All I want to do is to highlight all text within the numeric up down
> control Using the Select method only sets the cursor in the control
>
> Thank you,
> Shmuel Shulman
> SBS Technologies LTD
>
Author
29 Jan 2006 10:31 PM
S Shulman
Thanks

Shmuel

Show quoteHide quote
"Rocky" <nopl***@nowhere.com> wrote in message
news:uhtll4RJGHA.984@tk2msftngp13.phx.gbl...
> NumericUpDown1.Focus()
> NumericUpDown1.Select(0, NumericUpDown1.Value.ToString.Length)
>
>
> "S Shulman" <smshul***@hotmail.com> wrote in message
> news:OCiimrRJGHA.344@TK2MSFTNGP11.phx.gbl...
>> Hi
>>
>> All I want to do is to highlight all text within the numeric up down
>> control Using the Select method only sets the cursor in the control
>>
>> Thank you,
>> Shmuel Shulman
>> SBS Technologies LTD
>>
>
>