Cita:
Iniciado por kitune Pero supongamos estas fechas que pongo yo, y tiene que dar TRUE igualmente:
sería solo complementar lo anterior
Código vb:
Ver originalPublic Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim i As DateTime = "10/12/2008 10:10:10"
Dim a As DateTime = "10/12/2008 13:05:44"
If (i.Day == a.Day and i.Month==a.Month and i.Year == a.Year) then
return true
end if
End Sub
End Class