| | |
Validate a textbox
Please support our VB.NET advertiser: Intel Parallel Studio Home
Thread Solved |
•
•
Join Date: Jun 2009
Posts: 11
Reputation:
Solved Threads: 0
I want to validate a textbox so that only numeric values can be inserted in to it.
This validation should done while user enters the values.
For example.
Consider following keys had been pressed in a sequence
12345abcd678
only numeric values should appear in the textbox
so value which should be displayed in the textbox is
12345678
Any suggesions????? Please comment
This validation should done while user enters the values.
For example.
Consider following keys had been pressed in a sequence
12345abcd678
only numeric values should appear in the textbox
so value which should be displayed in the textbox is
12345678
Any suggesions????? Please comment
•
•
Join Date: Mar 2008
Posts: 324
Reputation:
Solved Threads: 7
VB.NET Syntax (Toggle Plain Text)
Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress If Asc(e.KeyChar) >= 48 And Asc(e.KeyChar) <= 57 Then e.Handled = False Else e.Handled = True End If End Sub
![]() |
Similar Threads
- Validate FooterTemplate Textbox field using javascript (JavaScript / DHTML / AJAX)
- Textbox Validation giving Error (Visual Basic 4 / 5 / 6)
- validation of textbox in gridview (ASP.NET)
- 2 seperate textbox validation with 2 buttons (JavaScript / DHTML / AJAX)
- How to validate the textbox in datagrid using javascript? (ASP.NET)
- How to validate textbox with date type!! (VB.NET)
Other Threads in the VB.NET Forum
- Previous Thread: update records+vb.net
- Next Thread: Promblem in Saving Data into Ms Access using VB.net . i am not able to save the data
| Thread Tools | Search this Thread |
Tag cloud for VB.NET
.net 2005 2008 access account application arithmetic array arrays basic bing button buttons c# center check checkbox code combobox component convert crystalreport data database datagrid datagridview date dissertation dissertations dropdownlist excel fade file-dialog ftp generatetags google gridview hardcopy images inline input insert intel internet listview mobile monitor ms net networking objects output passingparameters peertopeervideostreaming picturebox picturebox1 port print printing problem problemwithinstallation project remove save searchbox searchvb.net select serial server shutdown soap sorting survey table tcp temperature text textbox timer toolbox trim update updown user validation vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web winforms wpf





