30-03-19, 12:59 AM
PHP كود :
Private Sub EmptyTextBox_Click(sender As Object, e As EventArgs) Handles BtnEmptyTextBox.Click
For Each ctrl As Control In Me.Controls
If TypeOf ctrl Is TextBox Then
ctrl.Text = String.Empty
End If
Next
End Sub
Private Sub BtnRedBackColor_Click(sender As Object, e As EventArgs) Handles BtnRedBackColor.Click
For Each ctrl As Control In Me.Controls
If TypeOf ctrl Is TextBox Then
If ctrl.Text < 50 Then
ctrl.BackColor = Color.Red
End If
End If
Next
End Sub
سبحان الله وبحمده سبحان الله العظيم و الحمد لله ولا اله الا الله والله اكبر
