Đỗ Đức Tuấn
Thành viên mới
- Tham gia
- 14/4/18
- Bài viết
- 12
- Được thích
- 1
- Giới tính
- Nam
Chào cả nhà.
Em đang có 1 đoạn code của của 1 người bạn viết như phía dưới,
Em đọc và tìm hiểu trên mạng nhưng không hiểu đc ý nghĩa của
(ByVal Cancel As MSForms.ReturnBoolean): có ý nghĩa như thế nào trong VBA.
Vậy xin nhờ anh em chỉ giáo.
Cảm ơn cả nhà
Private Sub End_date_Exit(ByVal Cancel As MSForms.ReturnBoolean)
If Not IsDate(End_date.Text) Then
End_date.BackColor = &HFF& ' change the color of the textbox
MsgBox "Illegal date value"
' setting Cancel to True means the user cannot leave this textbox
' until the value is in the proper date format
Cancel = True
Else
End_date.BackColor = &H80000005 ' change color of the textbox
End If
End Sub
Em đang có 1 đoạn code của của 1 người bạn viết như phía dưới,
Em đọc và tìm hiểu trên mạng nhưng không hiểu đc ý nghĩa của
(ByVal Cancel As MSForms.ReturnBoolean): có ý nghĩa như thế nào trong VBA.
Vậy xin nhờ anh em chỉ giáo.
Cảm ơn cả nhà
Private Sub End_date_Exit(ByVal Cancel As MSForms.ReturnBoolean)
If Not IsDate(End_date.Text) Then
End_date.BackColor = &HFF& ' change the color of the textbox
MsgBox "Illegal date value"
' setting Cancel to True means the user cannot leave this textbox
' until the value is in the proper date format
Cancel = True
Else
End_date.BackColor = &H80000005 ' change color of the textbox
End If
End Sub