Hey guys , im creating a messenger via VB.NET Using eBuddy, I need to have a status and in the status i need it to update every second. The status is in label3 and i tried to put this code on form load but it doesnt change constantly only once.
WebBrowser1.Navigate("http://m.ebuddy.com/login.php?nw=MSN")
If WebBrowser1.DocumentText.Contains("Please fill in the correct username and password.") Then
Label3.Text = "STATUS: Please Enter Correct Details OR Failed Loging In"
Else
Label3.Text = "STATUS: Please Login"
End If
If WebBrowser1.DocumentText.Contains("Loading your buddy list") Then
Label3.Text = "STATUS: Logging In"
End If