CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: roeeoz

Search: Search took 0.03 seconds.

  1. Re: Assembly references resolution in an In Process managed com server

    OK found a way to do it.

    Wrote this class:
    public ref class CAssemblyResolver
    {
    public:

    static Assembly^ SIResolveEventHandler(Object^ sender, ResolveEventArgs^ args)
    {
    String^...
  2. Assembly references resolution in an In Process managed com server

    Hello All.

    I have a managed InProc (in process) ATL COM server.
    My ATL COM server is a shell property page which is loaded by Explorer.exe.

    In this COM server I am using remoting to get data...
  3. Re: Reflection - Assembly::CreateInstance of a non "ref" c++ class

    Hay, didn't monitor this thread for a while.
    Great answer and explanation, thanks a lot.
    I didn't look at it since the "Just Don't Do It" discussion.

    Thanks again for the explanations.

    Roee
  4. Re: Reflection - Assembly::CreateInstance of a non "ref" c++ class

    Thanks for your answer. I already converted the code not to use reflection, but I would still want to understand better what happens here since my application mixing managed and unmanged code as well...
  5. Reflection - Assembly::CreateInstance of a non "ref" c++ class

    Hello All.
    I have a c++ class not defined with the ref keyword

    class CMsg {...}

    I'm trying to create an instance of CMsg using Reflection, as follows:
    Assembly^ assembly =...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured