Hide Table of Contents

C++ Add-ins and Windows Vista

Add-ins written in .NET should work in Windows Vista. However, native add-ins written in C++ that register type libraries might encounter problems. The Windows Vista operating system has a limitation that prevents registration of such add-ins. You can read more about this issue in the Microsoft Knowledge Base article "Error message when an application calls the RegisterTypeLib API to register a type library in Windows Vista: "Access denied". The article contains a link to a hotfix download that solves the problem.


If you do not need the type library, the best solution is to remove its registration from the code. Do this in C++ by setting the bRegTypeLib argument to FALSE in CAtlDllModuleT::DllRegisterServer() and CAtlDllModuleT::DLLUnregisterServer():


// DllRegisterServer - Adds entries to the system registry
STDAPI DllRegisterServer(void)
{
  AFX_MANAGE_STATE(AfxGetStaticModuleState());
  // registers object
  HRESULT hr = _AtlModule.DllRegisterServer( FALSE );
  return hr;
}


// DllUnregisterServer - Removes entries from the system registry
STDAPI DllUnregisterServer(void)
{
  AFX_MANAGE_STATE(AfxGetStaticModuleState());
  HRESULT hr = _AtlModule.DllUnregisterServer( FALSE );
  return hr;
}



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:   C++ Add-ins and Windows Vista
*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) 2018 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.