CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8

Threaded View

  1. #1
    Join Date
    May 1999
    Location
    G day Mayt Land
    Posts
    971

    [RESOLVED] Dll and its location

    I have created a C# dll and call that dll in my VC++

    In my VC++ i simplly have included

    Code:
    #import "C:\Mydot-net-projects\sManagedDLL\sManagedDLL\bin\Debug\sManagedDLL.tlb"
    ...
    ...
    I run this to register my dll and create the tlb file
    Code:
    >RegAsm.exe smanageddll.dll /tlb:smanageddll.tlb /codebase

    Code:
        HRESULT hr = CoInitialize(NULL);
        ICalculatorPtr pICalc(__uuidof(ManagedClass));
    
    ....		
        char_t *p=static_cast<wchar_t *>(pICalc->Get(szTemp1,szTemp2)); // call the Dll




    Now The problem is that my VC++ caller expects the Dll to be found at a fixed location on C drive
    which is
    C:\Mydot-net-projects\sManagedDLL\sManagedDLL\obj\Debug .
    That is becuase once the dll is deleted from that folder the Vc++ crashes when its attempting to call the dll

    Whatsetting do I need to change on my C# project to make sure the VC++.EXE caller can find the dll where the .EXE is residing rather than
    C:\Mydot-net-projects\sManagedDLL\sManagedDLL\obj\Debug becuase once the dll
    Last edited by Saeed; September 30th, 2008 at 08:58 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured