
Originally Posted by
easton816
It would have to keep the same URL, I was thinking something like ******* and it just downloads whats in the ******* or something like that...
Yes, sounds good. I'm guessing you are saying Drop.Box. It (*)'d it out. The rule where your program can't show the internet is a little annoying. I would say make a hotkey that pops up a window, in which the host will put there download link. (OR A BUTTON, preferably easy to access by users, just so they can see where it's being downloaded from, etc, or whatever. The download link will be put into a textbox. You will then make the text in the textbox into a string. If you don't know how to do this it's easy, here(You probably know how,so skip.):
Dim DLLink1 As String
DLLink1 = Trim(TextBox9.Text)
*replacing TextBox9 with whatever name of the textbox is*
I would say put that on button, and also put in where when clicked, TextBox9.Enabled = False, so the link can't be changed.
AND then make the Update button contact, instead of the URL you put in, DLLink1.
For example, I think this is what you did with the Update button:
WebBrowser1.Navigate("http://YOURRANDOMLINKDOTCOMSLASH")
Instead do this
WebBrowser1.Navigate(DLLink1)
So now the Host can change the download link to whatever.
But then you have the problem with not being able to open up the webbrowser on your program because of MPGH's rule.
Maybe direct download links can be worked in with this? Idk never made a program download a file.
Maybe @
krazyshank can help. ^^
Just a idea.