There is a short way to do it:
Dim a As Control
For Each a In Form1
If TypeOf a Is TextBox Then
a.Text = ""
End If
Next
Dim a As Control
For Each a In Form1
If TypeOf a Is TextBox Then
a.Text = ""
End If
Next
If you are trying to update a table containing XML column via Linked Server in SQL Server, and you are not able to, you are not alone. There...
0 comments:
Post a Comment