Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub TextBox1_Change()
If Me.TextBox1.Text <> "" Then
Me.TextBox1.Text = UCase(Me.TextBox1.Text)
End If
End Sub
Private Sub TextBox1_Change()
Call UCaseTextBox(Me, TextBox1)
End Sub
Public Sub UCaseTextBox(frmMyForm As Form, txtMyTextBox As TextBox)
If frmMyForm.txtMyTextBox.Text <> "" Then
frmMyForm.txtMyTextBox.Text = UCase(frmMyForm.txtMyTextBox.Text)
End If
End Sub
Dim c As Control
For Each c In Me.Controls
If TypeOf c Is TextBox Then
c.Text = UCase(c.Text)
End If
Next