numbers in text box

  • Thread starter Thread starter Roberto Londono
  • Start date Start date
R

Roberto Londono

I am recieve data from a scale in text box. It has number and other carater.
How I could take only number in text box. I am work with 2008.

thanks for your help
 
=?Utf-8?B?Um9iZXJ0byBMb25kb25v?=
I am recieve data from a scale in text box. It has number and other
carater. How I could take only number in text box. I am work with
2008.

When you fill in the textbox, you can create a filtering routine to remove
other characters. A masked textbox can stop someone from entering anything
other than numbers, but if you are filling it, you need to take control of
the process.

Peace and Grace,

--
Gregory A. Beamer (MVP)

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

*******************************************
| Think outside the box! |
*******************************************
 
Roberto said:
I am recieve data from a scale in text box. It has number and other carater.
How I could take only number in text box. I am work with 2008.

Instead of taking this approach, I'd allow any input and set an
ErrorProvider component to the control if the entered text is invalid.
 
Back
Top