Hi,
I've three textboxes and their values are appended to a string variable and then a check is performed by IsDate function
DDText1 = 10 , MMtext2 = 12 ,YYtext3 = 1900
strMydate = DDText1 & "/" & MMtext2 & "/" & YYtext3
IsDate(strMydate)
When the value of MMtext2 is changed to 13 the IsDate() still gives True. In fact it should return False.
Your help would be much appreciated.
I've three textboxes and their values are appended to a string variable and then a check is performed by IsDate function
DDText1 = 10 , MMtext2 = 12 ,YYtext3 = 1900
strMydate = DDText1 & "/" & MMtext2 & "/" & YYtext3
IsDate(strMydate)
When the value of MMtext2 is changed to 13 the IsDate() still gives True. In fact it should return False.
Your help would be much appreciated.