Easy Application Updater that requires less code!
Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
6 posts
Page 1 of 1
This is so easy a noob can do it!
JUST COPY AND PASTE TO A ACTION SUCH AS AS BUTTON1 CLICK OR ANY THING ELSE!
you just need to setup a site to where you can download the file and overwite the current program!
Have FUN!
JUST COPY AND PASTE TO A ACTION SUCH AS AS BUTTON1 CLICK OR ANY THING ELSE!
Code: Select all
Dim SaveWhere As String = Environment.GetFolderPath(Environment.SpecialFolder.System) & "\File.exe"
If IO.File.Exists(SaveWhere) = True Then
IO.File.Delete(SaveWhere)
My.Computer.Network.DownloadFile("http://www.yoururl.com/server.exe", SaveWhere)
Process.Start(SaveWhere)
Else
My.Computer.Network.DownloadFile("http://www.yoururl.com/server.exe", SaveWhere)
Process.Start(SaveWhere)
End If
you just need to setup a site to where you can download the file and overwite the current program!
Have FUN!
------------------------------------------------------------------------------
Proprogrammer, not just a Programmer.
Proprogrammer, not just a Programmer.
it isn't a real updater its more like a "patch" cuz its just deleting the old file and replacing it
this is the first updater ive ever seen :
http://wyday.com/wyupdate/
this is the first updater ive ever seen :
http://wyday.com/wyupdate/
how could you change it to have a program delete a seperate program like 1 program patches another
Nailing my feet to the floor is easier than using my own muscles to balance, but you don't see me doing that 

You could run the updater and have it wait until the process has finished.
6 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023