NumericUpDown Control

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

    #1

    NumericUpDown Control

    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


  • Rocky

    #2
    Re: NumericUpDown Control

    NumericUpDown1. Focus()
    NumericUpDown1. Select(0, NumericUpDown1. Value.ToString. Length)


    "S Shulman" <smshulman@hotm ail.com> wrote in message
    news:OCiimrRJGH A.344@TK2MSFTNG P11.phx.gbl...[color=blue]
    > 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
    >[/color]


    Comment

    • S Shulman

      #3
      Re: NumericUpDown Control

      Thanks

      Shmuel

      "Rocky" <noplace@nowher e.com> wrote in message
      news:uhtll4RJGH A.984@tk2msftng p13.phx.gbl...[color=blue]
      > NumericUpDown1. Focus()
      > NumericUpDown1. Select(0, NumericUpDown1. Value.ToString. Length)
      >
      >
      > "S Shulman" <smshulman@hotm ail.com> wrote in message
      > news:OCiimrRJGH A.344@TK2MSFTNG P11.phx.gbl...[color=green]
      >> 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
      >>[/color]
      >
      >[/color]


      Comment

      Working...