Results 1 to 6 of 6

Thread: Secret of Getright software, Now in VB

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2000
    Posts
    4

    Smile

    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


  2. #2
    Guest
    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

  3. #3
    Addicted Member
    Join Date
    Oct 1999
    Location
    NY, USA.
    Posts
    240

    Can You Send Me a Copy Of The Article

    Hi,
    Can You Send Me a Copy Of The Article?
    Omar
    [email protected]
    http://omar.caribwalk.com
    To God Be The Glory

    I see Tech People ...

  4. #4
    Lively Member James Bond 007's Avatar
    Join Date
    May 2000
    Location
    London
    Posts
    116
    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.
    License to Program

    007

  5. #5
    Guest
    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.

  6. #6
    Hyperactive Member
    Join Date
    Jan 1999
    Location
    Rotterdam, Netherlands
    Posts
    386
    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.
    Hope this helps

    Crazy D

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width