how can i make my program,..... i guess ping or something an IP address and check a value, and if the value is newer then the one it has to load the new one. What i'm trying to do is the have a way for the program to download updates..
Dim webc As New System.Net.WebClient()
webc.DownloadFile("address to file file", "path to store the file on the computer")
how would i tell it to download to the loacation of the program where ever that may be?
Application.StartupPath & "\version.txt"
also sence u cant replace a file while it is active i would have to close the program. So i would have to have a second program to replace the file. How would i tell the first program to open the second program?
System.Diagnostics.Process.Start("path to the executable")