No announcements
Found 3361703 threads
-
0 Votes
How to only restrict the users to enter only numbers
Hi Pratik, Note that the InputScope is advisory only: it will affect the soft keyboard presentation, but it won't prevent the user from entering other ...Answered | 11 Replies | 2837 Views | Created by Pratik99 - Friday, September 13, 2013 4:36 PM | Last reply by Rob Caplan [MSFT] - Friday, September 20, 2013 7:53 PM -
13 Votes
[UWP] How to enter only numbers/digits in textbox
I have created simple class that can be passed in Tag property of TextBox and using TextChanging Event you can further process to allow numeric input only, ...Answered | 11 Replies | 28761 Views | Created by TejD - Tuesday, October 13, 2015 10:17 AM | Last reply by Piyush Manharlal - Monday, November 21, 2016 7:03 AM -
0 Votes
How do I restrict data entered in DataGridView column to numbers and forward slash only?
>how I restrict the data entered in a DataGridView column to numbers and forward slash only.Answered | 2 Replies | 865 Views | Created by JC Carmo - Sunday, September 16, 2018 2:20 AM | Last reply by JC Carmo - Thursday, September 20, 2018 3:14 AM -
0 Votes
Restricting Users Access to VIEWS Only
The result is a user that can only view run SELECT queries on the specified VIEW and doesn't see any tables in the database - exactly what I wanted.Answered | 8 Replies | 34304 Views | Created by MostInterestingMan - Tuesday, September 20, 2011 6:55 PM | Last reply by Erland Sommarskog - Wednesday, September 21, 2011 10:00 PM -
0 Votes
Restricting a text box to only include numbers between 0 and 100
The user will only be able to select or enter values between the minimum and maximum.Answered | 7 Replies | 11418 Views | Created by Jbgoodison - Saturday, June 29, 2013 1:36 AM | Last reply by Solitaire - Saturday, June 29, 2013 4:24 PM -
4 Votes
Only number
I like how the WhTurnner33 used: Text.Answered | 6 Replies | 599 Views | Created by Carmenello - Wednesday, June 3, 2015 2:50 PM | Last reply by Coding Cat - Thursday, June 4, 2015 11:25 AM -
1 Votes
How to create textbox for only numbers?
\d+){0,1}$")) { //return true if string (test) have only number like 121454, 341564.164864 return True; } else { return ...Answered | 4 Replies | 3894 Views | Created by Metehan TOKSOY - Friday, July 19, 2013 9:07 AM | Last reply by Khant Nipun - Saturday, July 20, 2013 12:38 PM -
5 Votes
Allow user to only enter numbers in textbox and if character entered then clear the textbox along with a message
Hi try this code char keypress = e.KeyChar; if (char.IsDigit(keypress) || e.KeyChar==Convert.ToChar(Keys.Back)) { ...Answered | 6 Replies | 47923 Views | Created by CoOlDud3 - Wednesday, July 4, 2012 12:13 PM | Last reply by shan032 - Tuesday, December 18, 2012 5:28 AM -
33 Votes
WPF TEXTBOX only enter numbers using PreviewKeyDown e.key but key.numpad can only be entered in English can not use other word input
If the contents of String meet your requirements, such as are numbers, then it will be cached, if not meet, with the contents of the previous cache to cover the user's ...Answered | 33 Replies | 9850 Views | Created by Ruby-Joe - Friday, August 18, 2017 4:33 PM | Last reply by Ruby-Joe - Friday, August 18, 2017 7:27 PM -
1 Votes
textbox that only accepts enter
Is the event raised when you press the enter button ?Answered | 9 Replies | 3688 Views | Created by badiparmagi - Friday, May 7, 2010 2:23 PM | Last reply by Vladimir.Ilic - Monday, May 10, 2010 10:08 AM -
3 Votes
numbers only in textbox
Yes, i sticked with something that worked, because i dont want to write a program that annoy users of my program. i rather let the user know immediately that wrong key is ...Answered | 19 Replies | 5631 Views | Created by max80 - Saturday, May 30, 2009 4:18 PM | Last reply by Star2 - Thursday, December 2, 2010 8:38 AM -
0 Votes
Only allow users to enter a number in textboxes.
I am doing an imperial to metric length converter and I am struggling to create an error message if a number is not inputted.Answered | 8 Replies | 4636 Views | Created by Doddsbury - Wednesday, May 8, 2013 10:51 AM | Last reply by JohnGrove - Wednesday, May 8, 2013 2:20 PM -
2 Votes
Numbers only - Not working when '0' is entered
Hi, I never worked with the ExpressionValidators, but ^[0-9]*$ matches only zero or more decimals (from 0 to 9)..Answered | 2 Replies | 4750 Views | Created by MisterG - Friday, February 11, 2011 8:38 PM | Last reply by Jesse Houwing - Saturday, February 12, 2011 3:11 PM -
2 Votes
Need to restrict a user to only use the views not the tables..
From this step i ve many doubts, what is the Owned schema table refers, how to give privileges to the views (total of 159 views), select 'Grant Select on '+ name +' to Your ...Answered | 6 Replies | 1662 Views | Created by Vinoth A - Monday, April 8, 2013 8:35 AM | Last reply by Kumar muppa - Monday, April 8, 2013 11:58 PM -
0 Votes
For example the user must enter only TEXT
For example the user must enter only TEXT.Answered | 1 Replies | 1159 Views | Created by Shamson - Saturday, October 20, 2012 9:22 PM | Last reply by Family Tree Mike - Sunday, October 21, 2012 2:05 AM -
0 Votes
restrict users to only access subsite
First check whether you has set permissions to these users correctly.Answered | 2 Replies | 1523 Views | Created by Brichardi - Wednesday, October 8, 2014 5:57 PM | Last reply by Lisa Chen1226 - Thursday, October 9, 2014 8:02 AM -
0 Votes
Table Restriction of only one Row
This will work if a single row gets entered and never deleted (only updated).Answered | 3 Replies | 1328 Views | Created by M.Burkhardt - Wednesday, May 8, 2013 7:46 AM | Last reply by Wison-Ho - Wednesday, May 8, 2013 9:28 AM -
1 Votes
Validate enter only numbers with fixed length
Hi, I am checking to see how things are going there on this issue.Answered | 5 Replies | 484 Views | Created by Ameenah - Wednesday, July 19, 2017 10:35 AM | Last reply by Lee__li - Wednesday, August 9, 2017 3:07 AM -
1 Votes
only numbers in textbox (ASP)
hey there people i want to restrict input of a textbox to only numbers but am doing it on asp.net, so i cant check for each character that is being inputed cause it ...Answered | 1 Replies | 2859 Views | Created by themehio - Tuesday, September 8, 2009 2:57 PM | Last reply by Khanna Gaurav - Tuesday, September 8, 2009 5:12 PM -
0 Votes
How to restrict a Project Tempalate to only Exact Users
Can you tell me that how can i do it ?Answered | 4 Replies | 8479 Views | Created by comdini - Friday, October 15, 2010 5:32 PM | Last reply by comdini - Sunday, October 17, 2010 5:03 PM - Items 1 to 20 of 3361703 Next ›
No announcements