- Katılım
- 13 Ekim 2005
- Mesajlar
- 1,401
- Excel Vers. ve Dili
- Excel 2010 - 2013 Türkçe - İngilizce
Merhaba arkadaşlar,
aşağıdaki kodlarda listbox1'e tarih olarak girilmeyen değerden sonra textbox'dan çıkmasını engellemek ve kutudaki text'in seçili olmasını istiyorum
ancak "Invalid use of property " hatası alıyorum. Sorun nerdedir? Saygılar.
If TextBox1 = "" Then
Exit Sub
End If
If IsDate(TextBox1.Value) = False Then
MsgBox "Lütfen tarih girin! Örnek(gg/aa/yyyy)"
Cancel = True
TextBox1.SelText 'hata burada alınıyor
Exit Sub
Else
TextBox1.Value = Format(CDate(TextBox1.Value), "dd.mm.yyyy")
TextBox2.Value = TextBox1.Value
End If
aşağıdaki kodlarda listbox1'e tarih olarak girilmeyen değerden sonra textbox'dan çıkmasını engellemek ve kutudaki text'in seçili olmasını istiyorum
ancak "Invalid use of property " hatası alıyorum. Sorun nerdedir? Saygılar.
If TextBox1 = "" Then
Exit Sub
End If
If IsDate(TextBox1.Value) = False Then
MsgBox "Lütfen tarih girin! Örnek(gg/aa/yyyy)"
Cancel = True
TextBox1.SelText 'hata burada alınıyor
Exit Sub
Else
TextBox1.Value = Format(CDate(TextBox1.Value), "dd.mm.yyyy")
TextBox2.Value = TextBox1.Value
End If