Merhabalar,
yapmaya çalıştığım olay aşağıdaki komuttan sonra textbox85 hücresini silmesi ve textbox85 de kalması. Veriyi siliyor fakat hücrede durmuyor textbox86 ya gidiyor. Bunun nedeni ne olabilir. Dosya boyutu çok yüksek olduğu için ekleyemiyorum. Yardımlarınız bekliyorum.
Private Sub TextBox85_afterupdate()
If Not TextBox85 = IsNumeric(TextBox85) Or Not Len(TextBox85) = 10 Then
MsgBox "Lütfen sadece 10 hane ve yalnızca rakam giriniz." & vbLf & "Örnek : (332) 248 23 81"
TextBox85 = ""
TextBox85.SetFocus
Exit Sub
End If
TextBox85 = Format(TextBox85, "(000) 000 00 00")
End Sub
yapmaya çalıştığım olay aşağıdaki komuttan sonra textbox85 hücresini silmesi ve textbox85 de kalması. Veriyi siliyor fakat hücrede durmuyor textbox86 ya gidiyor. Bunun nedeni ne olabilir. Dosya boyutu çok yüksek olduğu için ekleyemiyorum. Yardımlarınız bekliyorum.
Private Sub TextBox85_afterupdate()
If Not TextBox85 = IsNumeric(TextBox85) Or Not Len(TextBox85) = 10 Then
MsgBox "Lütfen sadece 10 hane ve yalnızca rakam giriniz." & vbLf & "Örnek : (332) 248 23 81"
TextBox85 = ""
TextBox85.SetFocus
Exit Sub
End If
TextBox85 = Format(TextBox85, "(000) 000 00 00")
End Sub