Results 1 to 5 of 5

Thread: How make VB updater

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Dec 2009
    Posts
    23

    How make VB updater

    Hey everyone i wanna make a vb auto updateer that i just click on button Update and it will download some files in the directory where i have the vb application

    please can someone say me what is the (download) code ?

    i just wanna it for my server that guys can download from my website some files.

    and it will not need framework ? or how i can build framework in my application you know that the ppl dont need install framework just run my application click on update and its finished

    please if you can write back fast. :/ ty...

  2. #2
    Hyperactive Member mbutler755's Avatar
    Join Date
    May 2008
    Location
    Peoria, AZ
    Posts
    417

    Re: How make VB updater

    We will be more than happy to help you, if you get stuck. We will not write the code for you though. Try to write it on your own and let us know if you get stuck.
    Regards,

    Matt Butler, MBA, BSIT/SE, MCBP
    Owner, Intense IT, LLC
    Find us on Facebook
    Follow us on Twitter
    Link up on LinkedIn
    mb (at) i2t.us

    CODE BANK SUBMISSIONS: Converting Images to Base64 and Back Again

  3. #3
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: How make VB updater

    If you look in the .NET Code Bank, you'll find a post that has some code which will update apps. It's a little clunky, but I'm sure it works (if it doesn't, it should only need some minor tweaking).

    As far as needing framework... they should already have it... otherwise they wouldn 't be running your app in the first place.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  4. #4
    Lively Member cevem's Avatar
    Join Date
    Feb 2010
    Location
    Mars
    Posts
    78

    Re: How make VB updater

    Use the XML.

    Like this;
    Put a file to server, name is: "Update.xml" including this lines:
    "LastVersion"

    On program:
    Read XML file "LastVersion" information,

    Code:
    If LastVersion = CurrentVersion Then
    'No updates available, put your code
    Else
    'Updates are avaiblable
    'Go to update page, or download file
    End If

  5. #5
    Addicted Member
    Join Date
    Feb 2010
    Posts
    197

    Re: How make VB updater

    Check in the codebank, there are at least 3 auto updater samples/classes there.

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