Hide Table of Contents

Create Toolbars Example (C++ COM)

Toolbars are added automatically by the C++ COM Addin Wizard, so you should examine the code that the wizard generates. An example is also included in this topic.

ISldWorks::AddToolbar4 takes bitmap filenames as arguments. You can create those filenames from resources using CreateBitmapFIleFromResource().

 

//This method adds the user toolbar to the SOLIDWORKS user interface

void CswSampleAddin::AddToolbar()

{

long docType = swDocTemplateTypePART;

CComBSTR title;

CComBSTR callback;

CComBSTR enable;

CComBSTR tip;

CComBSTR hint;

VARIANT_BOOL added;

long menuPos = 0; //Not used

title.LoadString(IDS_TOOLBAR_TITLE);

CComBSTR smallImageFile, largeImageFile;

bmp->CreateBitmapFileFromResource(IDB_TOOLBAR_SMALL, &smallImageFile);

bmp->CreateBitmapFileFromResource(IDB_TOOLBAR_LARGE, &largeImageFile);

iSwApp->AddToolbar4(addinID, title, smallImageFile, largeImageFile, menuPos, docType, &toolbarID);

 

callback.LoadString(IDS_TOOLBAR_CALLBACK0);

enable.LoadString(IDS_TOOLBAR_ENABLE0);

tip.LoadString(IDS_TOOLBAR_TIP0);

hint.LoadString(IDS_TOOLBAR_HINT0);

iSwApp->AddToolbarCommand2(addinID, toolbarID, 0, callback, enable, tip, hint, &added);

iSwApp->AddToolbarCommand2(addinID, toolbarID, 1, callback, enable, tip, hint, &added);

iSwApp->AddToolbarCommand2(addinID, toolbarID, 2, callback, enable, tip, hint, &added);



Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Create Toolbars Example (C++ COM)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2015 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.