merhaba arkadaşlar aşağıdaki kodda tarih yazarken tarih aralarına otomatik '.' nokta işareti getiriyor fakat ben bunu '/' slaş işareti koyduğumda olmuyor yardım edebilirmisiniz.
Kod:
Private Sub ComboBox6_Change()
If Menu.ComboBox6 <> "" Then
If Len(ComboBox6) = 2 Then
ComboBox6 = Format(ComboBox6, "0#"".")
End If
If Len(ComboBox6) = 5 Then
ComboBox6 = Format(ComboBox6, "0#"".""##"".")
End If
If Len(ComboBox6) = 10 Then
ComboBox6 = Format(ComboBox6, "0#"".""##"".""####")
End If
End If
End Sub
