CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2003
    Location
    17°22' N - 78°29' E
    Posts
    198

    Question Download and Install...

    Has anyone got the google toolbar.

    The toolbar is installed and appears near address bar of IE by just a visit. (After you say "I agree" to "Terms and Conditions")

    My Questions are

    => How does this happen ?

    => Does any one know of any script that can do this and is free to download and use ?

    ============
    ~ Lord Loh ~
    ============

  2. #2
    Join Date
    Aug 2002
    Location
    Reykjavik, Iceland
    Posts
    201
    Here you go:

    http://www.customtoolbar.com/

    ...but it will cost you $99 U.S.

  3. #3
    Join Date
    Jan 2003
    Location
    17°22' N - 78°29' E
    Posts
    198

    Exclamation No no no...The Download and install script!

    I am not intrested in a toolbar!

    I am looking for the script which downloads(sends the app to the visitors mechine) and installs(on the visitors mechine)...

    ============
    ~ Lord Loh ~
    ============

  4. #4
    Join Date
    Nov 2002
    Posts
    23
    in this case ActiveX is inserted in HTML with OBJECT tag, and codebase property, which points to a .CAB file of control

    when OBJECT tag points to a .CAB file, IE automaticly downloads and installs .CAB file

    <HTML>
    <HEAD>
    <TITLE>Customtoolbar.CAB</TITLE>
    </HEAD>
    <BODY>
    <OBJECT ID="Setup"
    CLASSID="CLSID:A7532940-DB22-4B10-BE6A-B467E5330745"
    CODEBASE="Customtoolbar.CAB#version=1,0,0,0">
    </OBJECT>
    </BODY>
    </HTML>

    Read this link
    MFC controls for use over internet

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

Featured