我有这个示例表格,它设置和比较两个时间表。
如果第二个时间表在第一个时间表(时间开始和时间结束)之间,我想捕获无法设置第二个时间表的时间。
例如: 第一个时间表:上午 8:00:00 到上午 10:00:00 我想捕获第二个时间表,以便它不能设置在第一个时间表之间,例如上午 8:30:00、9:00: 00 AM、9:30:00 等。.它将设置为上午 10:00:00 或以上。我怎么可能做到这一点?
我已经完成了某种代码,但弄清楚如何做到这一点对我来说很难。任何人都可以帮忙吗?
这是我的示例代码:
Private Sub Test_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
If timeStart.EditValue > timeEnd.EditValue Then
XtraMessageBox.Show("Time end must higher than time start", "", MessageBoxButtons.OK, MessageBoxIcon.Hand)
Exit Sub
ElseIf timeStart.EditValue = timeEnd.EditValue Then
XtraMessageBox.Show("Time start must not be equal to time end", "", MessageBoxButtons.OK, MessageBoxIcon.Hand)
Exit Sub
ElseIf timeStart1.EditValue < timeEnd.EditValue Then
XtraMessageBox.Show("Invalid", "", MessageBoxButtons.OK, MessageBoxIcon.Hand)
Exit Sub
ElseIf timeEnd1.EditValue < timeEnd.EditValue Then
XtraMessageBox.Show("Invalid", "", MessageBoxButtons.OK, MessageBoxIcon.Hand)
Exit Sub
End If
End Sub