Quote: "I would make it automatic, but I can't figure out how to dowload files over the net through VB... "
I don't know how to do it internally for full automation but...
Just put a browser in the program pointing to an updates page and let them select updates manually.
Click on Project > Add Form > Browser
Then on your main form, or where ever you want, add a button and use the following for the code.
Private Sub YourButtonsName_Click()
Dim frmB As New frmBrowser
frmB.StartingAddress = "http://www.thegamecreators.com"
frmB.Show
End Sub
I used "http://www.thegamecreators.com" in this example, so replace that with the path of your Download Page.