Creat a form with 1 timer and two textboxes and try this:
VB Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Timer1.Interval = 200
Timer1.Enabled = True
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
TextBox1.Text = DateTime.Now
If DateTime.Now.ToString = TextBox2.Text Then
Timer1.Enabled = False
Shell("explorer.exe [url]http://www.msn.com[/url]", AppWinStyle.MaximizedFocus)
End If
End Sub