•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the VB.NET section within the Software Development category of DaniWeb, a massive community of 402,509 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,818 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our VB.NET advertiser: Programming Forums
Views: 628 | Replies: 3
![]() |
•
•
Join Date: Dec 2002
Location: West Virginia
Posts: 375
Reputation:
Rep Power: 6
Solved Threads: 37
As Eric said "Validate how"?
To go thru all your controls use something like this:
To go thru all your controls use something like this:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim ctrl As Control
For Each ctrl In Me.Controls
If TypeOf (ctrl) Is TextBox Then
ctrl.Text = ctrl.Name & " validated"
ElseIf TypeOf (ctrl) Is ComboBox Then
ctrl.Text = ctrl.Name & " validated"
End If
Next
End Sub Wayne
It is hard to understand how a cemetery can raise its burial rates and blame it on the cost of living.
It is hard to understand how a cemetery can raise its burial rates and blame it on the cost of living.
![]() |
•
•
•
•
•
•
•
•
DaniWeb VB.NET Marketplace
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
- .net validation/javascript conflict (ASP.NET)
- W3C Validation (HTML and CSS)
Other Threads in the VB.NET Forum
- Previous Thread: how can i initialize 2 dimentiona integer array in visual basic 6.0
- Next Thread: Gridview


Linear Mode