- Yasaklandı
- #1
2 saniyede yazdım yanlış olabilir :s
PHP:
Public Shared Function UpdateCheck(ByVal web As WebBrowser, ByVal link As String, ByVal text As String)
web.Navigate(link)
If web.DocumentText = text Then
MsgBox("Up2Date")
Else
MsgBox("Need to download ne updates!")
Application.Exit()
End If
End Function