There is a much easier way to accomplish this:
vb.net Code:
Dim GetRemoteValue As New WebClient() Dim remoteValue As String = GetRemoteValue.DownloadString("http://yoururl.com/version.txt") GetRemoteValue.Dispose() If remoteValue > Application.ProductVersion Then 'do youre thing End if





Reply With Quote
