سعید قدیری مقدم
دوشنبه 25 اسفند 1382, 12:11 عصر
سلام :)
بچه ها حتما دیدید جدیدا یک سری toolbar برای اینترنت ایکسپلورر طراحی شده مثل google یا مثل یاهو و خیلی toolbar های دیگه می خواستم ببینم ما می تونیم برنامه های نوشته شده خودمون رو به عنوان یک toolbar هم به اینترنت ایکسپلورر و حتی به windows browser اضافه کنیم؟
از راهنماییتون ممنونم
sh
دوشنبه 25 اسفند 1382, 15:45 عصر
بله توی MSDN 2003 بگرد هست
سعید قدیری مقدم
دوشنبه 25 اسفند 1382, 16:13 عصر
ای بابا یک خورده راهنمایی کن :oops:
sh
سه شنبه 26 اسفند 1382, 00:10 صبح
اینم راهنمائی
Adding Toolbar Buttons
--------------------------------------------------------------------------------
This tutorial explains how to add a toolbar button to the Microsoft® Internet Explorer user interface. The toolbar button can either run a Microsoft Win32® application, run a script, or open an Explorer Bar. If you also want to create a menu item for the Win32 application or script, see the Adding Menu Items tutorial.
Requirements and Dependencies
General Steps
Adding the Details
Related Topics
Requirements and Dependencies
Note By default, custom toolbar buttons do not appear on the Internet Explorer toolbar. These buttons will appear in the left side of the Customize Toolbar dialog box.
Developers who want to add toolbar buttons to Internet Explorer must be familiar with the registry and globally unique identifiers (GUID).
This feature is only available in Internet Explorer 5 and later. Internet Explorer 4.0 allows you to add a custom Explorer Bar, but there is no method for adding a toolbar button to access your Explorer Bar.
Toolbar buttons require two sets of icons: one set with the active (color) icons and one set with the default (grayscale) icons. These icons can be stored in two .ico files or inside a resource (like a .dll or .exe file). For more information about what icons are required and for tips on designing icons for Internet Explorer, see Toolbar Button Style Guide.
General Steps
The steps in this section must be followed when adding any toolbar buttons to the Internet Explorer user interface. If any information is omitted, the toolbar button will not be displayed.
Icons and strings stored inside a resource can be referenced by providing the path to the resource and reference identification in the format, "path, resource_id". For example, if you wanted to use string resource 123 in Example.dll, you would use "Example.dll, 123".
Note This tutorial describes how to add a toolbar button for all users. If you want the toolbar button displayed for the current user only, substitute HKEY_CURRENT_USER for HKEY_LOCAL_MACHINE in the steps below.
Create a valid globally unique identifier (GUID). You can use Guidgen.exe (which ships with Microsoft Visual Studio®) or Uuidgen.exe (which ships in the Platform Software Development Kit (SDK)).
Create a new key (with the GUID as the name) in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
<Your GUID> is the valid GUID that you created in step 1.
Optional. Create a new string value, Default Visible, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\Default Visible
To make the toolbar button to appear on the Internet Explorer toolbar by default, set Default Visible to "Yes", otherwise set Default Visible to "No".
Note
If the user has customized the toolbar, the button will not appear on the toolbar automatically. The toolbar button will be added to the choices in the Customize Toolbar dialog box and will appear if the toolbar is reset.
Create a new string value, ButtonText, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\ButtonText
Set the value of ButtonText to the label you want for the toolbar button.
Create a new string value, HotIcon, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\HotIcon
Set the value of HotIcon to the full path of the .ico file that contains the three color icons.
Create a new string value, Icon, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\Icon
Set the value of Icon to the full path of the .ico file that contains the three grayscale icons.
Optional. Provide support for multiple native languages (like French or Japanese).
Complete the following steps to support different native languages:
Determine the LCID of the native language you want to support. These values can be found in the Platform Software Development Kit(SDK).
Create a new key, Lang####, using the LCID from the previous step in place of "####" in the registry under;
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\Lang####
For example, the key name should be Lang0411 for a Japanese implementation, since the LCID for Japanese is 0411.
Adding the Details
After completing the initial step of creating a new registry key, you will add values under the key. The values that you will need and the other steps to follow depend on what the toolbar button is going to run. The following list contains links to the sections with the steps required to complete the addition of a toolbar button.
COM Objects
Explorer Bars
Scripts
Executable Files
COM Objects
The following steps are required to complete the creation of a toolbar button that implements a Component Object Model (COM) object. If any information (that isn't optional) is omitted, the toolbar button will not be displayed.
Note This tutorial describes how to add a toolbar button for all users. If you want the toolbar button displayed for the current user only, substitute HKEY_CURRENT_USER for HKEY_LOCAL_MACHINE in the steps below.
Register the COM object.
Create a new string value, CLSID, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\CLSID
Set the value of CLSID equal to {1FBA04EE-3024-11d2-8F1F-0000F87ABD16}.
Create a new string value, ClsidExtension, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\ClsidExtension
Set the value of ClsidExtension equal to the GUID of the COM object.
In addition to the previous steps, the COM object must implement IOleCommandTarget.
If your COM object needs to access the Dynamic HTML (DHTML) Object Model of the page that Internet Explorer is currently displaying, you must implement IObjectWithSite.
The implementations of IOleCommandTarget's methods are standard, except for IOleCommandTarget::Exec. The COM object's IOleCommandTarget::Exec method is called with nCmdID=1 if the toolbar button is clicked and nCmdID=2 if the menu item is clicked. This difference allows developers to provide different behaviors for the toolbar button and the menu item.
When IObjectWithSite is implemented, Internet Explorer will call IObjectWithSite::SetSite and pass it a pointer to IShellBrowser.
Explorer Bars
The following steps are required to complete the creation of a toolbar button that opens an Explorer Bar. If any information (that isn't optional) is omitted, the toolbar button will not be displayed.
Note This tutorial describes how to add a toolbar button for all users. If you want the toolbar button displayed for the current user only, substitute HKEY_CURRENT_USER for HKEY_LOCAL_MACHINE in the steps below.
Create a new string value, CLSID, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\CLSID
Set the value of CLSID equal to {E0DD6CAB-2D10-11D2-8F1A-0000F87ABD16}.
Create a new string value, BandCLSID, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\BandCLSID
Set the value of BandCLSID to the CLSID of the Explorer Bar you want to open.
Note All Explorer Bars have a menu item added to the View menu automatically.
Scripts
The following steps are required to complete the creation of a toolbar button that runs a script. If any information (that isn't optional) is omitted, the toolbar button will not be displayed.
Note This tutorial describes how to add a toolbar button for all users. If you want the toolbar button displayed for the current user only, substitute HKEY_CURRENT_USER for HKEY_LOCAL_MACHINE in the steps below.
Create a new string value, CLSID, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\CLSID
Set the value of CLSID equal to {1FBA04EE-3024-11D2-8F1F-0000F87ABD16}.
Create a new string value, Script, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\Script
Set the value of Script to the full path of the script that will be run.
To add a menu item in the Tools menu with the same functionality, see the Scripts section of the Adding Menu Items tutorial.
Executable Files
The following steps are required to complete the creation of a toolbar button that runs an .exe file. If any information (that isn't optional) is omitted, the toolbar button will not be displayed.
Note This tutorial describes how to add a toolbar button for all users. If you want the toolbar button displayed for the current user only, substitute HKEY_CURRENT_USER for HKEY_LOCAL_MACHINE in the steps below.
Create a new string value, CLSID, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\CLSID
Set the value of CLSID equal to {1FBA04EE-3024-11D2-8F1F-0000F87ABD16}.
Create a new string value, Exec, in the registry under:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>
The result should look like:
HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions\<Your GUID>\Exec
Set the value of Exec to the full path of the .exe file that will be run.
To add an item to the Tools menu with the same functionality, see the Executable Files section of the Adding Menu Items tutorial.
Related Topics
Browser Extensions
Toolbar Button Style Guide
Web Accessories
Adding Menu Items
--------------------------------------------------------------------------------
© 2003 Microsoft Corporation. All rights reserved.
سعید قدیری مقدم
سه شنبه 26 اسفند 1382, 09:24 صبح
:oops: :flower:
قربون دستت :kiss:
سعید قدیری مقدم
سه شنبه 26 اسفند 1382, 10:09 صبح
sh عزیز من متن رو خوندم با یک مشکل جدید مواجه شدم اون هم اینکه چطوری میتونم واسه برنامه خودم یک GUID ثبت کنم؟
موضوع بعدی اینکه این روش برای اضافه کردن یک icon به میله ابزار هست چطور میشه یک میله ابزار جدید ایجاد کرد؟
از لطفت ممنون
sh
سه شنبه 26 اسفند 1382, 17:17 عصر
MSDN
vBulletin® v4.2.5, Copyright ©2000-1404, Jelsoft Enterprises Ltd.