Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add ATL Simple Object in Visual Studio 2017

I am working with an old ATL/COM project in Visual Studio 2017.

In previous versions of Visual Studio you could select "Add Class" and then select the option "Add simple ATL object" to add a COM class to the project. This option appears to be completely missing in Visual Studio 2017.

Has the option been moved?

Have I missed an installation option?

Does Visual Studio fail to recognize my project as an ATL project? (It was created with a much older version.)

Or is this the end of the road for ATL?

like image 983
Phil Jollans Avatar asked Oct 02 '17 08:10

Phil Jollans


People also ask

How do I create an ATL file?

To create an ATL project using the ATL Project Wizard In Visual Studio, choose File > New > Project from the main menu. Select the ATL Project icon in the Templates pane to open the ATL Project Wizard. Define your application settings using the Application Settings page of the ATL Project Wizard.


1 Answers

I'm not sure whether this an answer, but it is too much for a comment and more than just an edit to the question.

I have tested on two systems, with

  • Visual Studio Community 2017, Version 15.1
  • Visual Studio Professional 2017, Version 15.3.2

and I believe that the functionality has changed between these two versions. I think it is unlikely to be a difference between the Community and Professional versions.

In both cases I created a new ATL project and tried three ways to add a class:

  1. Add class... from the context menu in the Class View
  2. Add class... from the context menu in the Solution Explorer
  3. Add New Item... from the context menu in the Solution Explorer

With version 15.1, Add Class opens the following dialog, from which I can add an ATL Simple Object.

enter image description here

With version 15.3.2, Add Class opens the following dialog, without any option for an ATL Simple Object.

enter image description here

However, with version 15.3.2, Add New Item opens the following dialog, with a new option to create an ATL Simple Object, which was previously not available in this dialog.

enter image description here

So, it seems that the functionality has been moved. Curiously, it is no longer available in the Class View (which in my opinion is a mistake).

like image 194
Phil Jollans Avatar answered Sep 17 '22 23:09

Phil Jollans