473,657 Members | 2,450 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to impose numerical limits on a textbox??

Hi all,

I need to impose maximum and minimum numerical limits on a textbox.
I'd prefer not to code these in (since I have many textboxes and the
limits on each are different) and was wondering if there is any way to
do this within the textbox properties?

For example, I know the "NumericUpD own" has maximum and minimum
properties so that you can specify a range. This would be perfect,
however, I'm not a fan of the up/down arrows on the side. Is there a
way to bring in a NumericUpDown control and not display the up/down
arrows? If not, I'm hoping to get an answer to my question in the
first paragraph...

Thanks in advance,
-weg

Oct 24 '07 #1
7 6541
I need to impose maximum and minimum numerical limits on a textbox.
I'd prefer not to code these in (since I have many textboxes and the
limits on each are different) and was wondering if there is any way to
do this within the textbox properties?
I don't know of a built in method, and I can't say I ever looked.
However I would recommend that you create a new class that inherits
from TextBox and add in the necessary properties and functionality to
achieve the numerical limits. Then, whenever you need the
functionality, just use the ExtendedTextBox you created instead of the
default TextBox.

Thanks,

Seth Rowe
Oct 24 '07 #2
On Oct 24, 8:48 am, we...@drexel.ed u wrote:
Hi all,

I need to impose maximum and minimum numerical limits on a textbox.
I'd prefer not to code these in (since I have many textboxes and the
limits on each are different) and was wondering if there is any way to
do this within the textbox properties?

For example, I know the "NumericUpD own" has maximum and minimum
properties so that you can specify a range. This would be perfect,
however, I'm not a fan of the up/down arrows on the side. Is there a
way to bring in a NumericUpDown control and not display the up/down
arrows? If not, I'm hoping to get an answer to my question in the
first paragraph...

Thanks in advance,
-weg
Add the necessary code the the textbox's TextChanged event handler.

Oct 24 '07 #3
On Oct 24, 8:48 am, we...@drexel.ed u wrote:
Hi all,

I need to impose maximum and minimum numerical limits on a textbox.
I'd prefer not to code these in (since I have many textboxes and the
limits on each are different) and was wondering if there is any way to
do this within the textbox properties?

For example, I know the "NumericUpD own" has maximum and minimum
properties so that you can specify a range. This would be perfect,
however, I'm not a fan of the up/down arrows on the side. Is there a
way to bring in a NumericUpDown control and not display the up/down
arrows? If not, I'm hoping to get an answer to my question in the
first paragraph...

Thanks in advance,
-weg
I know of no textbox properties that can do that. Unforch, I think you
are going to have to add some code the TextChanged event handler's for
your textboxes. In you case, you may want to write a private general
value limiter method that is invoked in the TextChanged event handlers
for those textboxes you want to limit the values in.

Oct 24 '07 #4
On Oct 24, 7:48 am, we...@drexel.ed u wrote:
Hi all,

I need to impose maximum and minimum numerical limits on a textbox.
I'd prefer not to code these in (since I have many textboxes and the
limits on each are different) and was wondering if there is any way to
do this within the textbox properties?

For example, I know the "NumericUpD own" has maximum and minimum
properties so that you can specify a range. This would be perfect,
however, I'm not a fan of the up/down arrows on the side. Is there a
way to bring in a NumericUpDown control and not display the up/down
arrows? If not, I'm hoping to get an answer to my question in the
first paragraph...

Thanks in advance,
-weg
You can create your own user control and implement the functionality
of a numeric up down by putting a min/max value and validating the
entry every time. If you're not as worried about validation (or the
code is already written) you can use the LostFocus or TextChanged
events to quickly validate against whatever your min/max is and throw
a messagebox or change the value within that.

Oct 24 '07 #5
On Oct 24, 6:48 am, we...@drexel.ed u wrote:
Hi all,

I need to impose maximum and minimum numerical limits on a textbox.
I'd prefer not to code these in (since I have many textboxes and the
limits on each are different) and was wondering if there is any way to
do this within the textbox properties?
A normal textbox has a MaxLength property, but nothing to cover the
minium. If you need this, then why not create a UserControl so that
you can add this behavior to a standard textbox?

--
Tom Shelton

Oct 24 '07 #6
Okay, that makes sense. However, I'm still new to VB. Can someone
please list some pseudocode to get me started?

Thanks,
-weg
Oct 24 '07 #7
On Oct 24, 10:19 am, we...@drexel.ed u wrote:
Okay, that makes sense. However, I'm still new to VB. Can someone
please list some pseudocode to get me started?

Thanks,
-weg
I would create a class and have it inherit from textbox.
public class NumericTextBox
Inherits TextBox

Then I would define properties for the min and max value
public property MinValue as double
public property MaxValue as double

Grab a hold of the LostFocusEvent of the textbox to validate your box
public sub LostFocus ()
dim dbl as double
if Double.TryParse (me.text, dbl) then
if dbl me.MaxValue then
me.Text = me.MaxValue.ToS tring()
throw exception
elseif dbl < me.MinValue then
me.Text = me.Minvalue.ToS tring()
throw exception
end if
else
'not a number
me.Text = me.MinValue.ToS tring() 'If you don't reset it you
could run into issues especially in textchanged
throw exception
end if
end sub

You can also do the above in the text changed event if you want to
validate it on every character not letting the user think they can
even input a number that big.

Oct 24 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2666
by: rodger | last post by:
Hi all, how do I set a Textbox to only accept numerical values in vb .net many thanks rodger
5
3993
by: Mathieu Malaterre | last post by:
Hello, I have the following problem. I need to convert a unsigned char array into a string using only number (0-9) and '.'. The goal being to stored it on the minimal number of bytes. The first approach is a representation ala IP address: 255.255.255.255.255.255 therefore it takes 6*3+5 = 23 bytes. I can even get rid of the dot since the lenght is fixed. So I can go down to 3*6 = 18 bytes.
17
2857
by: matthias_k | last post by:
Hi, I am currently implementing a solver for linear optimization problems using the revised simplex method and I stumbled accross some strange behavior regarding the treatment of the number 0. I am not sure whether this is compiler or language related though. The first problem is, that there are two representations of zero, namely +0 and -0. Does IEEE for floating points allow this? Maybe I didn't activate IEEE floating point numbers?
12
1351
by: Hugh Janus | last post by:
Hi group, I have a form with a textbox control on it. I am using the textbox control with multiline enabled to output the 'log' information for a long process I am running. My problem is that it all works fine until the limit of the size of text is reached for the text box. This causes the textbox to stop update whilst the thread running the process continues. Any ideas how I can expand the functionality of the textbox to accept
23
15660
by: Abhi | last post by:
Hi.. I wanted the C source code in machine readable format for the book "Numerical Recipes in C". I got hold of the pdf version of the book somehow. Does anyone have the complete C code of the book?. If yes,..can you please mail me the code or somehow share it with me?. With Regards, Abhishek S
2
1583
by: Ian Eagland | last post by:
Hi I am just starting on Visual C (2003) from a VB background. I find it easier to learn by actually programming. I have fallen over at the first hurdle. How do you extract a numerical value from a text box? I have a number of reference books but it is not mentioned because I guess it is simple and I am just missing it. Regards
1
1484
by: walterbyrd | last post by:
If so, why? My webhoster, dreamhost, just informed me that my php apps can not upload files over 7mb, because of a PHP limitation. I don't know a lot about it, but I thought those limits were imposed by the web-hoster, not the language. I also thought those limits could be overwriten by editing the php.ini or .htaccess files.
3
2267
by: StudentInNeed | last post by:
I have an assignment where I need the user to enter a number between 40 and 60 in a textbox. I have to check to make sure it was between 40 and 60 and if it isn't I have to alert them to that. Can someone give me some guidance?
3
2024
by: sannihith | last post by:
how do I set a Textbox to only accept numerical values in vb .net
0
8325
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8844
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8518
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8621
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5643
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2743
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1971
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1734
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.