![]() | |
| |||||||
| Home | Register | Blogs | FAQ | Members List | Calendar | Downloads | Arcade | Mark Forums Read |
| Languages, Compilers and Interpreters C,C++,C#,.NET,Java,PHP,Perl,SQL and more |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 |
| Младенец Join Date: Oct 2001 Location: india
Posts: 1
Rep Power: 0 Reputation:
10 | hi,<BR>I have one dll in VB and one ATL COM service in VC++. The VB dll is imported in the VC++ service.When this Vb dll is registered to other system and the exe is run on that system then it can't create the object of the VB component. I found that if I rebuild the VC++ project after the VB dll is registered and run the exe then it works fine.. I need to start the VC++ service on the system where there is no development environment.So, I can't build the VC++ exe on that system. Can someone please help me. kamalakar<BR> kams14@yahoo.com |
| | |
| | #2 |
| Administrator | Actually VC++ registers your COM-application in a system after each build.<BR>That's an explanantion why it works after build. All you have to do is just call "regsvr32.exe your_COM_app_name" on a machine you want to use.<BR>And if you want uninstall COM-app, then call regsvr32 with "/u" key.
__________________ И повешенные могут качаться в неположенную сторону. /С.Е.Лец/ |
| | |