Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Removing ATL Object

Status
Not open for further replies.

xionWho

Programmer
May 22, 2001
1
US
I am a newbie with Visual C++. I created an ATL dll and inserted a new ATLobject to the workspace. Now I want to remove it from the project but can not find the way to do it. Please help?

Thanks
 
I'm not sure there is a wizard style way to do it. You could however, remove the interface definition for just that object from the idl file and remove the header and implementation files for it as well as any include references to it and that should do it.
--Will Duty
wduty@radicalfringe.com

 
You should remove manually:
1) interface definition in .idl
2) .h and .cpp files of ATL object.
3) some strings in main project's .cpp file.
4) resourse "registry".

and may be something else...

The easiest way to determine what you should remove - create empty projectm, remember, add ATL object, compare.
 
and also in idl file. John Fill
1c.bmp


ivfmd@mail.md
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top