Hi all..
I have written onw windows service..in that i have logic that is some part of code need to execute on certain time.. my service is running in every one min..
e.g.
If (DateTime.Now.ToString("MM/dd/yyyy hh:mm") = "7/23/2010 1:10 ") Then
'execute this logic
End If
But iam facing prob that it is considering seconds while running so can not compare above time...
Request you to suggest some other way..