All Questions
3 questions
1
vote
2
answers
609
views
TextBox not editing after SelectAll in vb.net
I have an issue, The thing is I have to allow user to enter numeric value in text box up to one decimal point,
When all text selected and I try try to edit text by entering any numeric key, It wont ...
0
votes
1
answer
5k
views
textbox asp net validator for numerical, accept decimal
i want to make textbox that contain numerical value, but it have to accept decimal number
valid:
1
1.2
1.23
1.234
0.0011 etc
but it will give error message if
1,234
1,23abc
1.3454.21
this is my code ...
2
votes
5
answers
7k
views
c# regular expression only numerical characters in string
I want to check if a string with an undefined length consist of only numbers. Example:
"234324" = true
"er32" = false
"1" = true
the way I tried to solve this problem is like this:
public bool ...