HI, I have an application which puts a macro in MSP. I can see it under modules area. The application is in VB 6 and the installation is created using VB Package and Deployment wizard. Upto installation everything works fine. The problem is if I un install the application using Add/remove software, I can still see that Macro under VBA editor in MSP. This macro checks for the .dll of the application and tries to create an object of that and I get the error as the dll is uninstalled. So what to do in this situtaion? I amlost here. Regards, Anubhav
The uninstaller won't uninstall macros from Project as far as I'm aware. You will need to do this manually: Select Tools, Organizer in Project and click the Modules tab. Select the module with your macros and delete. -- Rod Gill Project MVP Visit www.msproject-systems.com for Project Companion Tools and more wrote in message news:1135322625.886858.203290@o13g2000cwo.googlegroups.com... > HI, > > I have an application which puts a macro in MSP. I can see it under > modules area. > The application is in VB 6 and the installation is created using VB > Package and Deployment wizard. Upto installation everything works fine. > The problem is if I un install the application using Add/remove > software, I can still see that Macro under VBA editor in MSP. This > macro checks for the .dll of the application and tries to create an > object of that and I get the error as the dll is uninstalled. > So what to do in this situtaion? I amlost here. > > Regards, > Anubhav >
Thanks a lot. It works!