How to limit textbox value

How to prevent a user input no more than x value to a digit-only textbox?

PS: Not length but value.

I shared the question here, too: http://www.vbforums.com/showthread.php?712733-How-to-limit-textbox-value&p=4360681
Last edited on
if (digit_only > x value) {cout << "Enter a value less than x value"}; then just point back to digit box. well this a way that i would do it but there are other ways. or u could just write beside the digit box that say "do not enter a number more than x value"
Topic archived. No new replies allowed.