Textbox Enter

Katılım
21 Mart 2005
Mesajlar
200
Excel Vers. ve Dili
Ofiice 2013
Eğer textbxo1 boş ise textbox enter olayı çalışmasın. Textbox1 dolu ise textbox enter çalışsın. Saygılar.
 
Katılım
3 Mart 2005
Mesajlar
609
Excel Vers. ve Dili
2010 Excel-Türkçe
Altın Üyelik Bitiş Tarihi
21/03/2019
Private Sub TextBox1_Enter()
If TextBox1 = "" Then
Exit Sub
Else
MsgBox ("Dolu")
End If
End Sub
 
Katılım
21 Mart 2005
Mesajlar
200
Excel Vers. ve Dili
Ofiice 2013
Sayın metinozlu cevabınız için teşekkür ederim. Sanırım yanlış ifade ettim.
Eğer textbxo1 boş ise textbox1 de entere basınca textbox2 ye geçmesin. Textbox1 dolu ise textbox2 ye geçsin. Saygılar.
 

Korhan Ayhan

Administrator
Yönetici
Admin
Katılım
15 Mart 2005
Mesajlar
42,246
Excel Vers. ve Dili
Microsoft 365 Tr-En 64 Bit
Selamlar,

Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)
If TextBox1 = "" Then
MsgBox ("LÜTFEN VERİ GİRİNİZ...")
Cancel = True
Else
Cancel = False
End If
End Sub
 
Üst