자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb.net

IT HUB를 찾아주셔서 감사합니다.

기타 [vb.net] 두 날짜 및 시간 사에(구간)에 지정한 특정 날자시간이 포함되는지 확인하는 함수 / Between DateAn…

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 11,157회 작성일 19-11-17 20:51

본문

Private Function BetweenDate(StartTime As Date, EndTime As Date, CurrentTime As Date) As Boolean

If CurrentTime.Ticks >= StartTime.Ticks And CurrentTime.Ticks <= EndTime.Ticks Then

Return True

End If

Return False

End Function



사용예:)

If Not i.cName Is Nothing Then

ck = BetweenDate(i.sDate, i.eDate, DateTimePicker1.Value)

ck = ck Or BetweenDate(i.sDate, i.eDate, DateTimePicker2.Value)

End If


If ck Then

MsgBox("이미 예약된 시간입니다.")

Return

End If

댓글목록

등록된 댓글이 없습니다.