- Katılım
- 1 Ekim 2017
- Mesajlar
- 690
- Excel Vers. ve Dili
- 2019 türkçe
- Altın Üyelik Bitiş Tarihi
- 06/10/2023
Hayırlı günler sayın hocalarım. Altta yazılan kodlarda
1.Kod İzne ayrıldığındaki tarihin kodu
2.Kod İzin bitiş kodu
Örnek olarak
23.11.2022 tarih izne başlama
21.12.2022 izin bitiş tarihi yazdığımda Bitiş ayrılıştan önce olamaz uyarısı veriyor. Yardımlarınızı bekliyorım
Private Sub TextBox10_Change()
If TextBox10 = Empty Or TextBox11 = Empty Then Exit Sub
If TextBox10 > TextBox11 Then MsgBox "Ayrılış Bitişten sonra olamaz.", vbInformation, "UYARI": TextBox10 = Empty
End Sub
Private Sub TextBox11_Change()
If TextBox10 = Empty Or TextBox11 = Empty Then Exit Sub
If TextBox10 > TextBox11 Then MsgBox "Bitiş Ayrılıştan önce olamaz.", vbInformation, "UYARI": TextBox11 = Empty
End Sub
1.Kod İzne ayrıldığındaki tarihin kodu
2.Kod İzin bitiş kodu
Örnek olarak
23.11.2022 tarih izne başlama
21.12.2022 izin bitiş tarihi yazdığımda Bitiş ayrılıştan önce olamaz uyarısı veriyor. Yardımlarınızı bekliyorım
Private Sub TextBox10_Change()
If TextBox10 = Empty Or TextBox11 = Empty Then Exit Sub
If TextBox10 > TextBox11 Then MsgBox "Ayrılış Bitişten sonra olamaz.", vbInformation, "UYARI": TextBox10 = Empty
End Sub
Private Sub TextBox11_Change()
If TextBox10 = Empty Or TextBox11 = Empty Then Exit Sub
If TextBox10 > TextBox11 Then MsgBox "Bitiş Ayrılıştan önce olamaz.", vbInformation, "UYARI": TextBox11 = Empty
End Sub