Page 2 of 2

Re: Intense Help

Posted: Sun Jan 09, 2011 11:24 am
by upperdrag
ahh, nvm.. at least u tried.. :l I think i got it, first use a label and called it date and if you upload the date is for EG 2/3/2011 and your computer's date is 2/3/2011
it will show the message??

Re: Intense Help

Posted: Sun Jan 09, 2011 3:48 pm
by mandai
Code: Select all
        Dim dt As DateTime = DateTime.Parse("2/3/2011")
        If DateTime.Now.Date = dt Then
            MsgBox("date is now")
        End If
?

Re: Intense Help

Posted: Mon Jan 10, 2011 7:10 am
by upperdrag
Thanks Mandai :))