I add an ATL project in my main solution, but further on adding a new atl simple object in that project I get the error "The project needs to include ATL support". However if I just open the atl project individually in a new Visual Studio Window, I can create it. For the fix I also used
class CGFXComOBJECTNAMEModule : public CAtlDllModuleT< CGFXComOBJECTNAMEModule >
{
public:
DECLARE_LIBID(LIBID_GFXCOMOBJECTNAMELib)
DECLARE_REGISTRY_APPID_RESOURCEID(IDR_GFXCOMOBJECTNAME, "{ID here-}")
};
CGFXComOBJECTNAMEModule _Module;
as I saw this fix on internet FIX
still getting the same error! CAn anyone please help me regarding this?