|
-
Jul 4th, 2000, 11:30 PM
#1
Thread Starter
New Member
Hi brains,
Now VB 7.0 is going to born.
Fully and freely multithreaded
well, coming to the story
Do you want to know how to download a 10 MB of file in the time of downloading 4 MB of file?
Then personally email me, I will send you the article that will change the face of your Internet Programming.
It is not joke, It is not catch. It is purely technology, and It is already working with Getright.
Bye
Rajesh Kannan
http://vbpage.to/yourname
1 and only redirect url for VB programmers
-
Jul 4th, 2000, 11:55 PM
#2
I didn't ask you for your article yet..but I am sending an email.
Here is another way, not the best way, but it works:
Code:
Needed: 1 Form, 1 CommandButton, 2 Textboxes
Private Sub Command1_Click()
On Error GoTo Done
Dim i As Integer
'** Download #'s start at 1!
i = 1
Text2.Text = ""
Do
'** Setup and request the data
Text1.LinkMode = 0
Text1.LinkTopic = "GetRight|DownloadInfo"
Text1.LinkItem = i
Text1.LinkMode = 2
Text1.LinkRequest
'** values are:
'** FileName|FileSize|Percent%|EstTimeRemaining
Text2.Text = Text2.Text + " " + Text1.Text
i = i + 1
'** As long as getting something not empty, do the next one.
Loop While (Text1.Text <> "")
Done:
End Sub
-
Jul 5th, 2000, 12:08 AM
#3
Addicted Member
Can You Send Me a Copy Of The Article
Hi,
Can You Send Me a Copy Of The Article?
-
Jul 5th, 2000, 01:30 AM
#4
Lively Member
Silibrain, do you know how to use GETRIGHT. I download it before and it is kind similar to Gozilla. Maybe you can help me set it up.
-
Jul 5th, 2000, 02:10 AM
#5
James Bond 007, its exactly like Go!Zilla, except it costs money. I like Getright more. Run the setup...install it...run it...register it if you want. Load it when downloading a program. If you set it right, it will capture your clicks. You can resume downloads..does exactly what Go!Zilla does.
-
Jul 5th, 2000, 02:40 AM
#6
Hyperactive Member
The GetRight/Gozilla technology isn't that spectacular. It splits a file into pieces and download the pieces at the same time. A lot of program use that (all those so called download accelerators do exactly the same). It's nice though to have such a feature build in your own program if you want to let the users download something from within your program.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|