|
-
Jun 29th, 2010, 01:45 AM
#13
Re: Help with Program Update?
 Originally Posted by Radjesh Klauke
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
Doing that, version 1.10 will be considered earlier than version 1.2.
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|