Skip to main content

AccessTr.neT


Liste Kutusunda Listelenen Verilerin Süre Ortalaması

Liste Kutusunda Listelenen Verilerin Süre Ortalaması

#22
artık bu da olmazsa benden pes
Private Sub son_tarih_Exit(Cancel As Integer)
If Len(ilk_tarih & "") > 0 And Len(son_tarih.Text & "") > 0 Then
    If CLng(ilk_tarih.Value) > CLng(son_tarih.Text) Then
        MsgBox " ilk tarih son tarihten büyük olamaz"
        DoCmd.CancelEvent
        Me.ActiveControl.SetFocus
        Exit Sub
    End If
End If
TmListeGncl
End Sub

Private Sub ilk_tarih_Exit(Cancel As Integer)
If (Len(ilk_tarih.Text & "") > 0 And Len(son_tarih & "") > 0) Then
    If CLng(ilk_tarih.Text) > CLng(son_tarih.Value) Then
        MsgBox " ilk tarih son tarihten büyük olamaz"
        DoCmd.CancelEvent
        Me.ActiveControl.SetFocus
    Exit Sub
    End If
End If
TmListeGncl
End Sub
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
RE: Liste Kutusunda Listelenen Verilerin Süre Ortalaması - Yazar: berduş - 25/06/2020, 16:56