2

我一直在网上寻找关于如何做到这一点的想法,到目前为止,我什么都没有。

到目前为止,这是我的代码...

If dtp_warrantyExp.Value.Date > dtp_dateAcquired.Value.Date Then
        dtp_warrantyExp.Value = dtp_dateAcquired.Value
    End If
4

1 回答 1

0

你离正确的代码不远了。开始...

If dtp_warrantyExp.Value.Date > dtp_dateAcquired.Value.Date Then
        dtp_warrantyExp.Value = dtp_dateAcquired.Value.Date
End If
于 2014-05-09T12:15:28.537 回答