COM components registration/Unregistration

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Manoj Nair

    #1

    COM components registration/Unregistration

    Hi,
    Am trying to create a COM server in C# as required in our application.use d
    REGASM to register the dll and tlb file and everything works fine but when I
    try to unregister the dll and tlb using RegAsm /unregister nothing happen
    even though it says the unregistration has been succesful.Even rebooting the
    system didnt help.
    How do I remove these OLE objects they show up when i browse through OLE
    View.

    thanks in advance
    Manoj


  • Willy Denoyette [MVP]

    #2
    Re: COM components registration/Unregistration


    "Manoj Nair" <mnair69temp@ho tmail.com> wrote in message
    news:On7B4T6WFH A.2448@TK2MSFTN GP12.phx.gbl...[color=blue]
    > Hi,
    > Am trying to create a COM server in C# as required in our application.use d
    > REGASM to register the dll and tlb file and everything works fine but when
    > I
    > try to unregister the dll and tlb using RegAsm /unregister nothing happen
    > even though it says the unregistration has been succesful.Even rebooting
    > the
    > system didnt help.
    > How do I remove these OLE objects they show up when i browse through OLE
    > View.
    >
    > thanks in advance
    > Manoj
    >
    >[/color]

    regasm /unregister /tlb xxxxx.dll
    should work.
    Are you sure it's not an older version you had registered before without
    ever unregistering?

    Willy.



    Comment

    Working...