[Help] Connecting a .VB file to the registery.

Fatheed

New member
Joined
Dec 27, 2007
Messages
3
Programming Experience
1-3
I'm using Visual Studio 2008

Basically this program is designed to connect to rapidshare with a premium account I own and download the files instantly. If no account details are entered the file is downloaded after a wait.

The problem I'm having is linking the .vb file from the classes folder with the information to do the login with the registry which holds the login information.

The login information is entered into the registery with a form and 2 text boxes.

I'll post the code of both the form and .VB file below.

Please tell me if you need any more information and Thanks in advance for any help.

Text File - Filedownload.VB
Text File - Settings.VB
 
Starters

For a start, use a Webclient to download files.

VB.NET:
Dim wc As New System.Net.WebClient
wc.DownloadFile("http://address.org/example.zip", "C:/thefile.zip")

- James
 
If you looked at the files I linked you would see that I have already done that.

What I need is to make the program login to Rapidshare THEN download the files.
 
To be honest this is an open source code which I've edited for personal use soI'm not quite sure where to put stuff since I haven't done VB in a while.

If anyone would like to attempt to get it working and let me know I would be very grateful.

Rar File - Clicky Clicky
 
Back
Top