ragnorak
Altın Üye
- Katılım
- 4 Haziran 2016
- Mesajlar
- 204
- Excel Vers. ve Dili
- Excel 2021
- Altın Üyelik Bitiş Tarihi
- 03-09-2026
Kod:
Public Function FORM_YAZI_BUYUK()
Dim ctrl As Object
For Each ctrl In Me.Controls
If TypeName(ctrl) = "OptionButton" Then
ctrl.Caption = UCase(Replace(Replace(ctrl.Caption, "ı", "I"), "i", "İ"))
End If
If TypeName(ctrl) = "Label" Then
ctrl.Caption = UCase(Replace(Replace(ctrl.Caption, "ı", "I"), "i", "İ"))
End If
If TypeName(ctrl) = "CheckBox" Then
ctrl.Caption = UCase(Replace(Replace(ctrl.Caption, "ı", "I"), "i", "İ"))
End If
Next
End Function