Y yoavchen Registered User. Local time Today, 14:32 Joined Jan 31, 2005 Messages 53 Jul 14, 2005 #1 how can i limit an unbounded textbox so only digits from 0-9 will be entered
B Bada bing! Registered User. Local time Today, 14:32 Joined Jul 13, 2005 Messages 15 Jul 14, 2005 #2 Change the format property of the textbox to numeric? Last edited: Jul 14, 2005
W WayneRyan AWF VIP Local time Today, 22:32 Joined Nov 19, 2002 Messages 7,122 Jul 15, 2005 #3 y, You can use the OnChange event and look at Right(Me.YourField.Text, 1) and ignore it if it isn't between "0" and "9". Don't know if that's what you mean though. Wayne
y, You can use the OnChange event and look at Right(Me.YourField.Text, 1) and ignore it if it isn't between "0" and "9". Don't know if that's what you mean though. Wayne
aqif Registered User. Local time Today, 22:32 Joined Jul 9, 2001 Messages 158 Jul 15, 2005 #4 Use Imput Mask You can set input mask to the way you like. See help for input mask in Access to know what's best suited to your needs
Use Imput Mask You can set input mask to the way you like. See help for input mask in Access to know what's best suited to your needs
W WayneRyan AWF VIP Local time Today, 22:32 Joined Nov 19, 2002 Messages 7,122 Jul 15, 2005 #5 Stewart's code might help: http://www.access-programmers.co.uk/forums/showthread.php?t=65433 Wayne