Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 4 of 4

Thread: Help me please

  1. #1
    Join Date
    Dec 2009
    Posts
    3

    Star Help me please

    I want an updater for my project because I could not do it alone! Please it's urgent! If someone has an example he gives me his example with an explanation

  2. #2
    Join Date
    Nov 2009
    Location
    UK
    Posts
    1,634
    Quote Originally Posted by Virus Spy View Post
    I want an updater for my project because I could not do it alone! Please it's urgent! If someone has an example he gives me his example with an explanation
    Ok I have to ask why wast people time as your request says nothing! if you want a fucntion that looks for a updated version of you well it can be done depending on how you program it many functions can be updated on the fly also but end of the day we don't know what in **** you want to update this is your first post and already become a fail please try harder in your future posts.

  3. #3
    Join Date
    Dec 2009
    Posts
    3
    My project is a tool for disinfection of some viruses "like an antivirus" then I must have an updater to update the bases of viral disinfection tool for better efficiency

  4. #4
    Join Date
    Oct 2009
    Location
    Merton, United Kingdom
    Posts
    684
    Quote Originally Posted by Virus Spy View Post
    I want an updater for my project because I could not do it alone! Please it's urgent! If someone has an example he gives me his example with an explanation
    You could use TrueUpdate but if you don't want to buy that, I'd suggest making an INI file on your server containing something like this.

    Code:
    [Updater Information]
    Version = 1.00
    And then use AutoPlay to download it like this..

    Code:
    HTTP.Download("http://yourserver.com/update.ini", _TempFolder.."\\~updater.tmp", MODE_TEXT, 5, 80);
    then check it..

    Code:
    CurrentVersion = "1.00";
    ServerVersion = INIFile.GetValue(_TempFolder.."\\~updater.tmp", "Updater Information", "Version");
    
    if (String.CompareFileVersions(CurrentVersion, ServerVersion) == -1) then
       -- we need to update.
    end
    Naturally, I wrote this in the browser so I can't guarantee it works.

    Don't be afraid to ask questions here, someone will help out eventually.

  5. #5
    Join Date
    Dec 2009
    Posts
    3

    Thumbs up

    thank you I'll try your solution

Posting Permissions

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