Click to See Complete Forum and Search --> : Download and Install...


lord loh
January 23rd, 2003, 02:17 AM
Has anyone got the google toolbar (http://toolbar.google.com/).

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 ?

websmith99
January 23rd, 2003, 06:53 PM
Here you go:

http://www.customtoolbar.com/

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

lord loh
January 23rd, 2003, 10:47 PM
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)...

Brane
January 30th, 2003, 03:05 AM
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 (http://support.microsoft.com/default.aspx?scid=KB;en-us;q167158)