我有兩個不同日期的文本框,orderDate和recievedDate。在收到日期需要手動輸入到表格,我想包括該recievedData應訂購日期之後發生的驗證,我曾嘗試:在VBA中比較日期
If txtRecievedDate.Text < txtOrderDate.Text Then
MsgBox "Incorrect Date, item can't be recieved before order"
else
MsgBox "correct date"
End If
這不,例如RecievedDate值是工作「 19/11/2013「,OrderDate的值是」2013年10月20日「,雖然這是正確的日期,但此語句僅比較」19「和」20「,因此將其標記爲不正確。
有沒有辦法比較文本框中的兩個日期?對於使用VBA
感謝
爲什麼使用文本框輸入日期?參見[THIS](http://stackoverflow.com/questions/12012206/formatting-mm-dd-yyyy-dates-in-textbox-in-vba/12013961#12013961) –