DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub TextBox1_Change()
dgr = Len(TextBox1)
If dgr = 4 Then
TextBox1 = TextBox1 & "/"
End If
End Sub
Private Sub TextBox1_Change()
dgr = Len(TextBox1)
If dgr = 4 Then
TextBox1 = TextBox1 & "/"
End If
If dgr = 5 Then
TextBox1 = Left(TextBox1, 4)
End If
End Sub
Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If Len(TextBox1) = 4 And KeyCode <> 8 Then TextBox1 = TextBox1 & "/"
End Sub
Alternatif olarak aşağıdaki gibide deneyebilirsiniz.
Kod:Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer) If Len(TextBox1) = 4 And KeyCode <> 8 Then TextBox1 = TextBox1 & "/" End Sub