register com object ?

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

    register com object ?

    Hello,

    I create a COM object in c# to use some new functionnality in old softawre.
    On my dev platform, I register the component on build (option register for
    com interop)

    On production platform (tested with a Win98), I register the COM object with
    regasm.
    I see on the registry, that the component is installed (like on my dev pc :
    guid, ....).

    But, when I list the com object usable (I list with the same soft on my dev
    pc), I don't see my object.

    What can I do ?

    Thx


  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: register com object ?

    Geoffrey,

    What do you mean by when you list the com object usable?

    What application are you looking at a list of COM objects in?


    --
    - Nicholas Paldino [.NET/C# MVP]
    - mvp@spam.guard. caspershouse.co m

    "Geoffrey" <AEnlevergeoffr ey@dufour.be> wrote in message
    news:u9KeddHlGH A.4792@TK2MSFTN GP02.phx.gbl...[color=blue]
    > Hello,
    >
    > I create a COM object in c# to use some new functionnality in old
    > softawre.
    > On my dev platform, I register the component on build (option register for
    > com interop)
    >
    > On production platform (tested with a Win98), I register the COM object
    > with
    > regasm.
    > I see on the registry, that the component is installed (like on my dev pc
    > :
    > guid, ....).
    >
    > But, when I list the com object usable (I list with the same soft on my
    > dev
    > pc), I don't see my object.
    >
    > What can I do ?
    >
    > Thx
    >
    >[/color]


    Comment

    • Geoffrey

      #3
      Re: register com object ?

      Ok, I find the solution, I must do a gacutil -i



      "Nicholas Paldino [.NET/C# MVP]" <mvp@spam.guard .caspershouse.c om> a écrit
      dans le message de news:O2QLqvHlGH A.1204@TK2MSFTN GP02.phx.gbl...[color=blue]
      > Geoffrey,
      >
      > What do you mean by when you list the com object usable?
      >
      > What application are you looking at a list of COM objects in?
      >
      >
      > --
      > - Nicholas Paldino [.NET/C# MVP]
      > - mvp@spam.guard. caspershouse.co m
      >
      > "Geoffrey" <AEnlevergeoffr ey@dufour.be> wrote in message
      > news:u9KeddHlGH A.4792@TK2MSFTN GP02.phx.gbl...[color=green]
      > > Hello,
      > >
      > > I create a COM object in c# to use some new functionnality in old
      > > softawre.
      > > On my dev platform, I register the component on build (option register[/color][/color]
      for[color=blue][color=green]
      > > com interop)
      > >
      > > On production platform (tested with a Win98), I register the COM object
      > > with
      > > regasm.
      > > I see on the registry, that the component is installed (like on my dev[/color][/color]
      pc[color=blue][color=green]
      > > :
      > > guid, ....).
      > >
      > > But, when I list the com object usable (I list with the same soft on my
      > > dev
      > > pc), I don't see my object.
      > >
      > > What can I do ?
      > >
      > > Thx
      > >
      > >[/color]
      >
      >[/color]


      Comment

      Working...